需求 我们在RK平台调试uboot的时候,我们在代码中经常会看到有用debug(); 来打印调试信息的。 解决 开启调试log的方法有多种,这里记录一下我常用的方法,就是重定义debug宏。 在要开启调试log的驱动文件添加: #undef debug #define debug(fmt, args...) printf(fmt, ##args)