From c1ddce98b796a6d87bb4cef12db3338c22ce8800 Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Fri, 11 Apr 2008 11:28:36 +0300 Subject: [PATCH] USB: MUSB: checkpatch.pl fixes to musb_debug.h Misc cleanup patch. Signed-off-by: Felipe Balbi Signed-off-by: Tony Lindgren --- drivers/usb/musb/musb_debug.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/usb/musb/musb_debug.h b/drivers/usb/musb/musb_debug.h index a9a00550b5b..0743972fe12 100644 --- a/drivers/usb/musb/musb_debug.h +++ b/drivers/usb/musb/musb_debug.h @@ -37,15 +37,15 @@ #define yprintk(facility, format, args...) \ do { printk(facility "%s %d: " format , \ - __FUNCTION__, __LINE__ , ## args); } while (0) -#define WARN(fmt, args...) yprintk(KERN_WARNING,fmt, ## args) -#define INFO(fmt,args...) yprintk(KERN_INFO,fmt, ## args) -#define ERR(fmt,args...) yprintk(KERN_ERR,fmt, ## args) + __func__, __LINE__ , ## args); } while (0) +#define WARN(fmt, args...) yprintk(KERN_WARNING, fmt, ## args) +#define INFO(fmt, args...) yprintk(KERN_INFO, fmt, ## args) +#define ERR(fmt, args...) yprintk(KERN_ERR, fmt, ## args) #define xprintk(level, facility, format, args...) do { \ - if ( _dbg_level(level) ) { \ + if (_dbg_level(level)) { \ printk(facility "%s %d: " format , \ - __FUNCTION__, __LINE__ , ## args); \ + __func__, __LINE__ , ## args); \ } } while (0) #if MUSB_DEBUG > 0 @@ -59,7 +59,7 @@ static inline int _dbg_level(unsigned l) return debug >= l; } -#define DBG(level,fmt,args...) xprintk(level,KERN_DEBUG,fmt, ## args) +#define DBG(level, fmt, args...) xprintk(level, KERN_DEBUG, fmt, ## args) extern const char *otg_state_string(struct musb *); -- 2.41.0