1 #ifndef __LINUX_COMPAT_H__
2 #define __LINUX_COMPAT_H__
5 #include <linux/list.h>
6 #include <linux/compat.h>
8 #define WARN(condition, fmt, args...) ({ \
9 int ret_warn = !!condition; \
11 printf(fmt, ##args); \
14 #define device_init_wakeup(dev, a) do {} while (0)
16 #define platform_data device_data
19 #define wmb() asm volatile ("" : : : "memory")
22 #define msleep(a) udelay(a * 1000)
25 * Map U-Boot config options to Linux ones
27 #ifdef CONFIG_OMAP34XX
28 #define CONFIG_SOC_OMAP3430
31 #ifdef CONFIG_OMAP44XX
32 #define CONFIG_ARCH_OMAP4
35 #endif /* __LINUX_COMPAT_H__ */