]> git.sur5r.net Git - u-boot/blobdiff - include/linux/mtd/compat.h
Merge branch 'next' of ../next
[u-boot] / include / linux / mtd / compat.h
index 460cd45c808e67e8e1ce646cca1fbf0a56d182ac..39c693f7a8c0a50ab1addfe1b90696908dd373e1 100644 (file)
 #define KERN_DEBUG
 
 #define kmalloc(size, flags)   malloc(size)
+#define kzalloc(size, flags)   calloc(size, 1)
+#define vmalloc(size)          malloc(size)
 #define kfree(ptr)             free(ptr)
+#define vfree(ptr)             free(ptr)
+
+#define DECLARE_WAITQUEUE(...) do { } while (0)
+#define add_wait_queue(...)    do { } while (0)
+#define remove_wait_queue(...) do { } while (0)
+
+#define KERNEL_VERSION(a,b,c)  (((a) << 16) + ((b) << 8) + (c))
 
 /*
  * ..and if you can't take the strict
 #define max_t(type,x,y) \
        ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
 
+#ifndef BUG
 #define BUG() do { \
        printf("U-Boot BUG at %s:%d!\n", __FILE__, __LINE__); \
 } while (0)
 
 #define BUG_ON(condition) do { if (condition) BUG(); } while(0)
-
-#define likely(x)      __builtin_expect(!!(x), 1)
-#define unlikely(x)    __builtin_expect(!!(x), 0)
+#endif /* BUG */
 
 #define PAGE_SIZE      4096
 #endif