forked from Minki/linux
staging: ks7010: fix coding style issue of enclosing complex macro value in parentheses
This patch fixes error of enclosing complex macro value in parentheses, error as issued by checkpatch Signed-off-by: Chetan Sethi <cpsethi369@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
01d9de8071
commit
05be989d98
@ -36,8 +36,10 @@
|
||||
|
||||
#ifdef KS_WLAN_DEBUG
|
||||
#define DPRINTK(n, fmt, args...) \
|
||||
if (KS_WLAN_DEBUG > (n)) \
|
||||
printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args)
|
||||
do { \
|
||||
if (KS_WLAN_DEBUG > (n)) \
|
||||
printk(KERN_NOTICE "%s: "fmt, __FUNCTION__, ## args); \
|
||||
} while (0)
|
||||
#else
|
||||
#define DPRINTK(n, fmt, args...)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user