]> 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 9036b74f86e24045b70829de2f03b2e4083a96cc..39c693f7a8c0a50ab1addfe1b90696908dd373e1 100644 (file)
 
 #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 vmalloc(size)          malloc(size)
+#define kfree(ptr)             free(ptr)
+#define vfree(ptr)             free(ptr)
 
-#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
+#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
@@ -44,8 +48,5 @@
 #define BUG_ON(condition) do { if (condition) BUG(); } while(0)
 #endif /* BUG */
 
-#define likely(x)      __builtin_expect(!!(x), 1)
-#define unlikely(x)    __builtin_expect(!!(x), 0)
-
 #define PAGE_SIZE      4096
 #endif