Commit 2f3829ff authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

[PATCH] USB: fix up usb_serial.h's dbg macro to take up less space

parent fa0bec94
......@@ -370,7 +370,7 @@ static inline void usb_serial_debug_data (const char *file, const char *function
/* Use our own dbg macro */
#undef dbg
#define dbg(format, arg...) do { if (debug) printk(KERN_DEBUG __FILE__ ": " format "\n" , ## arg); } while (0)
#define dbg(format, arg...) do { if (debug) printk(KERN_DEBUG "%s: " format "\n" , __FILE__ , ## arg); } while (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment