Linux驱动开启调试信息
在需要的地方 文件前 | 函数内
#define DEBUG 1
#define mled_dbg 1 #if mled_dbg == 1 #define mled_dbgmsg(args...) printk(args) #else #define mled_dbgmsg(args...) do{}while(0) #endif
一勤天下无难事。
在需要的地方 文件前 | 函数内
#define DEBUG 1
#define mled_dbg 1 #if mled_dbg == 1 #define mled_dbgmsg(args...) printk(args) #else #define mled_dbgmsg(args...) do{}while(0) #endif