1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef _MLOG_INTERNAL_H #define _MLOG_INTERNAL_H #include <linux/printk.h> #define MLOG_DEBUG #ifdef MLOG_DEBUG #define MLOG_PRINTK(args...) pr_debug(args) #else #define MLOG_PRINTK(args...) do { } while (0) #endif #endif