aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorSergei Shtylyov <sshtylyov@ru.mvista.com>2010-09-24 06:44:02 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-22 13:21:52 -0400
commitd613746d8bc3a2904d4585d7efd7f457d9db6fb9 (patch)
tree2252b919e8d5c3a8ba1eda0e671a3813456d784e /drivers/usb
parente06ea97fa47611992a5a61058729cf8e83bf6fda (diff)
USB: musb: make DBG() calls actually depend on CONFIG_USB_MUSB_DEBUG
Enabling CONFIG_USB_MUSB_DEBUG option causes -DDEBUG to be added to gcc's command line, however the DBG() macro doesn't depend on DEBUG, so that the debugging messages get printed regardless of the option, and I don't think that this was intended. Get rid of otherwise unused xprintk() macro and make DBG() macro directly call pr_debug() which only results in the actual code generated if DEBUG is defined. This change makes musb_hdrc.o ~30% less in size with CONFIG_USB_MUSB_DEBUG disabled (in host mode). Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/musb/musb_debug.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/usb/musb/musb_debug.h b/drivers/usb/musb/musb_debug.h
index d73afdbde3ee..94f6973cf8f7 100644
--- a/drivers/usb/musb/musb_debug.h
+++ b/drivers/usb/musb/musb_debug.h
@@ -42,11 +42,10 @@
42#define INFO(fmt, args...) yprintk(KERN_INFO, fmt, ## args) 42#define INFO(fmt, args...) yprintk(KERN_INFO, fmt, ## args)
43#define ERR(fmt, args...) yprintk(KERN_ERR, fmt, ## args) 43#define ERR(fmt, args...) yprintk(KERN_ERR, fmt, ## args)
44 44
45#define xprintk(level, facility, format, args...) do { \ 45#define DBG(level, format, args...) do { \
46 if (_dbg_level(level)) { \ 46 if (_dbg_level(level)) \
47 printk(facility "%s %d: " format , \ 47 pr_debug("%s %d: " format, __func__, __LINE__, ## args); \
48 __func__, __LINE__ , ## args); \ 48 } while (0)
49 } } while (0)
50 49
51extern unsigned musb_debug; 50extern unsigned musb_debug;
52 51
@@ -55,8 +54,6 @@ static inline int _dbg_level(unsigned l)
55 return musb_debug >= l; 54 return musb_debug >= l;
56} 55}
57 56
58#define DBG(level, fmt, args...) xprintk(level, KERN_DEBUG, fmt, ## args)
59
60extern const char *otg_state_string(struct musb *); 57extern const char *otg_state_string(struct musb *);
61 58
62#ifdef CONFIG_DEBUG_FS 59#ifdef CONFIG_DEBUG_FS