|
@@ -39,7 +39,7 @@ MODULE_PARM_DESC(core_debug,"enable debug messages [core]");
|
|
#define em28xx_coredbg(fmt, arg...) do {\
|
|
#define em28xx_coredbg(fmt, arg...) do {\
|
|
if (core_debug) \
|
|
if (core_debug) \
|
|
printk(KERN_INFO "%s %s :"fmt, \
|
|
printk(KERN_INFO "%s %s :"fmt, \
|
|
- dev->name, __FUNCTION__, ##arg); } while (0)
|
|
|
|
|
|
+ dev->name, __FUNCTION__ , ##arg); } while (0)
|
|
|
|
|
|
static unsigned int reg_debug;
|
|
static unsigned int reg_debug;
|
|
module_param(reg_debug,int,0644);
|
|
module_param(reg_debug,int,0644);
|
|
@@ -48,7 +48,7 @@ MODULE_PARM_DESC(reg_debug,"enable debug messages [URB reg]");
|
|
#define em28xx_regdbg(fmt, arg...) do {\
|
|
#define em28xx_regdbg(fmt, arg...) do {\
|
|
if (reg_debug) \
|
|
if (reg_debug) \
|
|
printk(KERN_INFO "%s %s :"fmt, \
|
|
printk(KERN_INFO "%s %s :"fmt, \
|
|
- dev->name, __FUNCTION__, ##arg); } while (0)
|
|
|
|
|
|
+ dev->name, __FUNCTION__ , ##arg); } while (0)
|
|
|
|
|
|
static unsigned int isoc_debug;
|
|
static unsigned int isoc_debug;
|
|
module_param(isoc_debug,int,0644);
|
|
module_param(isoc_debug,int,0644);
|
|
@@ -57,7 +57,7 @@ MODULE_PARM_DESC(isoc_debug,"enable debug messages [isoc transfers]");
|
|
#define em28xx_isocdbg(fmt, arg...) do {\
|
|
#define em28xx_isocdbg(fmt, arg...) do {\
|
|
if (isoc_debug) \
|
|
if (isoc_debug) \
|
|
printk(KERN_INFO "%s %s :"fmt, \
|
|
printk(KERN_INFO "%s %s :"fmt, \
|
|
- dev->name, __FUNCTION__, ##arg); } while (0)
|
|
|
|
|
|
+ dev->name, __FUNCTION__ , ##arg); } while (0)
|
|
|
|
|
|
static int alt = EM28XX_PINOUT;
|
|
static int alt = EM28XX_PINOUT;
|
|
module_param(alt, int, 0644);
|
|
module_param(alt, int, 0644);
|