1. 程式人生 > >如何開啟linux核心中dev_dbg的開關

如何開啟linux核心中dev_dbg的開關

比如要開啟某個驅動中的dev_dbg,那麼需要在驅動檔案.c中這些行"<linux/device.h>"或者"<linux /platfom_device.h>"(device.h包含platform_device.h)之前定義DEBUG

如:

#define DEBUG 1

#include <linux/device.h>