]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
rtl8192u: fix whitespace around if statements in r8192U.h
authorXenia Ragiadakou <burzalodowa@gmail.com>
Mon, 13 May 2013 17:15:51 +0000 (20:15 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 May 2013 23:43:26 +0000 (16:43 -0700)
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>
drivers/staging/rtl8192u/r8192U.h

index 9539520dbf1366f117f36e83e7b8f50bbf522c82..80cb3c0cb8087eccc0ba774bbf9ba5ef37376156 100644 (file)
@@ -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);