HomeSort by relevance Sort by last modified time
    Searched refs:g_sdio_debug_level (Results 1 - 2 of 2) sorted by null

  /hardware/ti/wlan/wl1271/external_drivers/sdio/linux/
SdioDrvDbg.h 50 extern int g_sdio_debug_level;
54 #define PERR(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_ERR) printk(format , ##args)
55 #define PDEBUG(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_DEBUG) printk(format , ##args)
56 #define PINFO(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_INFO) printk( format , ##__VA_ARGS__)
57 #define PNOTICE(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_NOTICE) printk( format , ##__VA_ARGS__)
58 #define PWARNING(format, ... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_WARNING) printk(format , ##__VA_ARGS__)
62 #define PERR(format, args... ) if(g_sdio_debug_level >= SDIO_DEBUGLEVEL_ERR) printk(format , ##args)
SdioDrv.c 271 module_param(g_sdio_debug_level, int, 0644);
272 MODULE_PARM_DESC(g_sdio_debug_level, "debug level");
273 int g_sdio_debug_level = SDIO_DEBUGLEVEL_ERR; variable
274 EXPORT_SYMBOL(g_sdio_debug_level); variable
    [all...]

Completed in 570 milliseconds