#ifndef __INCLUDE_LINUX_BAREBOX_WRAPPER_H #define __INCLUDE_LINUX_BAREBOX_WRAPPER_H #include #define kmalloc(len, mode) malloc(len) #define kzalloc(len, mode) xzalloc(len) #define vmalloc(len) malloc(len) #define kfree(ptr) free(ptr) #define vzalloc(len) kzalloc(len, 0) #define vfree(ptr) free(ptr) #define KERN_EMERG "" /* system is unusable */ #define KERN_ALERT "" /* action must be taken immediately */ #define KERN_CRIT "" /* critical conditions */ #define KERN_ERR "" /* error conditions */ #define KERN_WARNING "" /* warning conditions */ #define KERN_NOTICE "" /* normal but significant condition */ #define KERN_INFO "" /* informational */ #define KERN_DEBUG "" /* debug-level messages */ #define KERN_CONT "" #define GFP_KERNEL 0 typedef int gfp_t; #define printk printf #define pr_warn pr_warning #define __init #define MODULE_AUTHOR(x) #define MODULE_DESCRIPTION(x) #define MODULE_LICENSE(x) #define MODULE_ALIAS(x) typedef int spinlock_t; #define spin_lock_init(...) #define spin_lock(...) #define spin_unlock(...) static inline void spin_lock_irqsave(spinlock_t *lock, unsigned long flags) {} static inline void spin_unlock_irqrestore(spinlock_t *lock, unsigned long flags) {} #define mutex_init(...) #define mutex_lock(...) #define mutex_unlock(...) struct mutex { int i; }; struct rw_semaphore { int i; }; #define __user #define __init #define __exit #define init_rwsem(...) do { } while (0) #define down_read(...) do { } while (0) #define down_write(...) do { } while (0) #define down_write_trylock(...) 1 #define up_read(...) do { } while (0) #define up_write(...) do { } while (0) #define kthread_create(...) __builtin_return_address(0) #define kthread_stop(...) do { } while (0) #define wake_up_process(...) do { } while (0) typedef int wait_queue_head_t; #define cond_resched() do { } while (0) #define init_waitqueue_head(...) do { } while (0) typedef int irqreturn_t; #define IRQ_NONE 0 #define IRQ_HANDLED 0 #endif /* __INCLUDE_LINUX_BAREBOX_WRAPPER_H */