diff options
| author | Joe Perches <joe@perches.com> | 2003-04-29 01:31:38 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <greg@kroah.com> | 2003-04-29 01:31:38 -0700 |
| commit | 2f3829ff2827fc3783e3ca6b92ba3d3471e7a54e (patch) | |
| tree | a35e9f2074620680832016c714fdc71b6fc3f2af | |
| parent | fa0bec94dde5e63abb7df2375c741590dbb50efd (diff) | |
[PATCH] USB: fix up usb_serial.h's dbg macro to take up less space
| -rw-r--r-- | drivers/usb/serial/usb-serial.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/usb-serial.h b/drivers/usb/serial/usb-serial.h index b0d3ad04675c..9547a61b8997 100644 --- a/drivers/usb/serial/usb-serial.h +++ b/drivers/usb/serial/usb-serial.h @@ -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) |
