diff options
| author | Joe Perches <joe@perches.com> | 2003-04-29 01:32:01 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <greg@kroah.com> | 2003-04-29 01:32:01 -0700 |
| commit | 04704e5464ca941d3eb40fa0805818727c39e35e (patch) | |
| tree | c1c260e3c728dd5bd881a0ce257c26cdbf57f0de /include | |
| parent | 2f3829ff2827fc3783e3ca6b92ba3d3471e7a54e (diff) | |
[PATCH] USB: fix up usb.h's dbg macro to take up less space
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index e61d0f12eddc..7ad72ec2c8ad 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -974,7 +974,7 @@ void usb_show_device(struct usb_device *); void usb_show_string(struct usb_device *dev, char *id, int index); #ifdef DEBUG -#define dbg(format, arg...) printk(KERN_DEBUG __FILE__ ": " format "\n" , ## arg) +#define dbg(format, arg...) printk(KERN_DEBUG "%s: " format "\n" , __FILE__ , ## arg) #else #define dbg(format, arg...) do {} while (0) #endif |
