diff options
author | Xenia Ragiadakou <burzalodowa@gmail.com> | 2013-05-13 20:15:51 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-16 16:43:26 -0700 |
commit | 0962f96441f0ec6065f665f6b8169cbc2f088f6c (patch) | |
tree | 0fc6eb1973a09c5e5e754f4d33bf9e80f63484df | |
parent | fcd9f3596c3465bc377a7ed6e7dee11ce9ab2d78 (diff) |
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>
-rw-r--r-- | drivers/staging/rtl8192u/r8192U.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192u/r8192U.h b/drivers/staging/rtl8192u/r8192U.h index 9539520dbf13..80cb3c0cb808 100644 --- a/drivers/staging/rtl8192u/r8192U.h +++ b/drivers/staging/rtl8192u/r8192U.h @@ -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); |