diff options
author | Felipe Balbi <felipe.balbi@nokia.com> | 2008-10-29 15:10:39 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-11-13 14:45:01 -0800 |
commit | b60c72abdbd44ed2a63fa80455d0b7f18ce76d2b (patch) | |
tree | a4d260b5e530427ff349b0327cf5a935bf6c5828 /drivers/usb/musb/musb_debug.h | |
parent | eef767b761bdd08200fbbfc910ab815d03787326 (diff) | |
download | linux-rt-b60c72abdbd44ed2a63fa80455d0b7f18ce76d2b.tar.gz |
usb: musb: fix debug global variable name
In order to avoid namespace conflicts, add a prefix
to our kernel-wise symbol.
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb/musb_debug.h')
-rw-r--r-- | drivers/usb/musb/musb_debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/musb/musb_debug.h b/drivers/usb/musb/musb_debug.h index 4d2794441b15..9fc1db44c72c 100644 --- a/drivers/usb/musb/musb_debug.h +++ b/drivers/usb/musb/musb_debug.h @@ -48,11 +48,11 @@ __func__, __LINE__ , ## args); \ } } while (0) -extern unsigned debug; +extern unsigned musb_debug; static inline int _dbg_level(unsigned l) { - return debug >= l; + return musb_debug >= l; } #define DBG(level, fmt, args...) xprintk(level, KERN_DEBUG, fmt, ## args) |