This patch fixes all prohibited spaces  after open '(' checkpatch.pl errors
for rtl8188eu.

Signed-off-by: Remi Pommarel <r...@triplefau.lt>
---
 drivers/staging/rtl8188eu/include/odm_debug.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/rtl8188eu/include/odm_debug.h 
b/drivers/staging/rtl8188eu/include/odm_debug.h
index e8c4cab..db7b44e 100644
--- a/drivers/staging/rtl8188eu/include/odm_debug.h
+++ b/drivers/staging/rtl8188eu/include/odm_debug.h
@@ -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)
@@ -106,8 +106,8 @@
 
 #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);                                          \
-- 
1.8.5.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to