Staging: rtl8188eu: Fixed prohibited spaces after open '('
authorRemi Pommarel <repk@triplefau.lt>
Tue, 6 May 2014 21:40:50 +0000 (23:40 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 May 2014 16:40:18 +0000 (01:40 +0900)
This patch fixes all prohibited spaces  after open '(' checkpatch.pl errors
for rtl8188eu.

Signed-off-by: Remi Pommarel <repk@triplefau.lt>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/odm_debug.h

index e8c4cab2c3540952ec502e9581ba8d23d4390bad..db7b44e16c48c0c03eaac15513efdf3c9f4977e3 100644 (file)
@@ -85,7 +85,7 @@
 /*------------------------Export Marco Definition---------------------------*/
 #define DbgPrint       pr_info
 #define RT_PRINTK(fmt, args...)                                \
-       DbgPrint( "%s(): " fmt, __func__, ## args);
+       DbgPrint("%s(): " fmt, __func__, ## args);
 
 #ifndef ASSERT
        #define ASSERT(expr)
 
 #define ODM_RT_ASSERT(pDM_Odm, expr, fmt)                              \
        if (!(expr)) {                                                  \
-               DbgPrint( "Assertion failed! %s at ......\n", #expr);   \
-               DbgPrint( "      ......%s,%s,line=%d\n", __FILE__,      \
+               DbgPrint("Assertion failed! %s at ......\n", #expr);    \
+               DbgPrint("      ......%s,%s,line=%d\n", __FILE__,       \
                        __func__, __LINE__);                            \
                RT_PRINTK fmt;                                          \
                ASSERT(false);                                          \