summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2003-04-29 01:31:38 -0700
committerGreg Kroah-Hartman <greg@kroah.com>2003-04-29 01:31:38 -0700
commit2f3829ff2827fc3783e3ca6b92ba3d3471e7a54e (patch)
treea35e9f2074620680832016c714fdc71b6fc3f2af
parentfa0bec94dde5e63abb7df2375c741590dbb50efd (diff)
[PATCH] USB: fix up usb_serial.h's dbg macro to take up less space
-rw-r--r--drivers/usb/serial/usb-serial.h2
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)