mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 17:26:42 +09:00
rtl8192u: fix whitespace around if statements in r8192U.h
This patch fixes a part of the following checkpatch error:
ERROR: space required before the open parenthesis '('
by adding space after if
Signed-off-by: Xenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
fcd9f3596c
commit
0962f96441
@@ -88,7 +88,7 @@
|
||||
#define DMESGE(x,a...)
|
||||
extern u32 rt_global_debug_component;
|
||||
#define RT_TRACE(component, x, args...) \
|
||||
do { if(rt_global_debug_component & component) \
|
||||
do { if (rt_global_debug_component & component) \
|
||||
printk(KERN_DEBUG RTL819xU_MODULE_NAME ":" x "\n" , \
|
||||
##args);\
|
||||
}while(0);
|
||||
|
||||
Reference in New Issue
Block a user