USB: Convert concatenated __FILE__ to %s, __FILE__
Reduces string space a bit Neaten a macro redefine of dbg Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
759f363426
commit
f45ba776da
@ -38,7 +38,7 @@ static int debug = 1;
|
||||
#define dbg(lvl, format, arg...) \
|
||||
do { \
|
||||
if (debug >= lvl) \
|
||||
printk(KERN_DEBUG __FILE__ " : " format " \n", ## arg); \
|
||||
printk(KERN_DEBUG "%s: " format "\n", __FILE__, ##arg); \
|
||||
} while (0)
|
||||
|
||||
|
||||
@ -132,8 +132,8 @@ static void adu_debug_data(int level, const char *function, int size,
|
||||
if (debug < level)
|
||||
return;
|
||||
|
||||
printk(KERN_DEBUG __FILE__": %s - length = %d, data = ",
|
||||
function, size);
|
||||
printk(KERN_DEBUG "%s: %s - length = %d, data = ",
|
||||
__FILE__, function, size);
|
||||
for (i = 0; i < size; ++i)
|
||||
printk("%.2x ", data[i]);
|
||||
printk("\n");
|
||||
|
Reference in New Issue
Block a user