staticirqreturn_tdp_usb_id_detect_handler(intirq,void*dev_id){structanx7808_platform_data*pdata=anx7808_client->dev.platform_data;structanx7808_data*anx7808= (structanx7808_data*)dev_id;if(gpio_get_value(pdata->gpio_cbl_det)==1)gotoexit;DEV_DBG("%s: ++++\n", __func__);if(gpio...
Re: 怎么让linux驱动程序里面的调试函数 dev_dbg 输出调试信息 晕哥 说: 对应的 .c 文件 加上 #define DEBUG 1 参考: https://austinmarton.wordpress.com/2011/11/06/enabling-dev_dbg-in-the-kernel/ 刚才试过了, 把 #define DEBUG 1 加到 #include <linux/device.h> 前面就可以了。 # dmesg[ ...