mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-30 11:38:15 +00:00 
			
		
		
		
	Add WARN_ONCE definition to allow single time notification of warnings to the user. Taken from Linux kernel (4.17) with slight changes (Removed __section(.data.once)) Signed-off-by: Ramon Fried <ramon.fried@gmail.com> [trini: Drop the musb and dwc3 compat versions] Signed-off-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			518 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			518 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __LINUX_COMPAT_H__
 | |
| #define __LINUX_COMPAT_H__
 | |
| 
 | |
| #include <malloc.h>
 | |
| #include <linux/list.h>
 | |
| #include <linux/compat.h>
 | |
| 
 | |
| #define device_init_wakeup(dev, a) do {} while (0)
 | |
| 
 | |
| #define platform_data device_data
 | |
| 
 | |
| #ifndef wmb
 | |
| #define wmb()			asm volatile (""   : : : "memory")
 | |
| #endif
 | |
| 
 | |
| #define msleep(a)	udelay(a * 1000)
 | |
| 
 | |
| /*
 | |
|  * Map U-Boot config options to Linux ones
 | |
|  */
 | |
| #ifdef CONFIG_OMAP34XX
 | |
| #define CONFIG_SOC_OMAP3430
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_OMAP44XX
 | |
| #define CONFIG_ARCH_OMAP4
 | |
| #endif
 | |
| 
 | |
| #endif /* __LINUX_COMPAT_H__ */
 |