Commit 3fc29811 authored by Remi Pommarel's avatar Remi Pommarel Committed by Greg Kroah-Hartman

Staging: rtl8188eu: Fixed prohibited spaces after open '('

This patch fixes all prohibited spaces  after open '(' checkpatch.pl errors
for rtl8188eu.
Signed-off-by: default avatarRemi Pommarel <repk@triplefau.lt>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 12a72083
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
/*------------------------Export Marco Definition---------------------------*/ /*------------------------Export Marco Definition---------------------------*/
#define DbgPrint pr_info #define DbgPrint pr_info
#define RT_PRINTK(fmt, args...) \ #define RT_PRINTK(fmt, args...) \
DbgPrint( "%s(): " fmt, __func__, ## args); DbgPrint("%s(): " fmt, __func__, ## args);
#ifndef ASSERT #ifndef ASSERT
#define ASSERT(expr) #define ASSERT(expr)
...@@ -106,8 +106,8 @@ ...@@ -106,8 +106,8 @@
#define ODM_RT_ASSERT(pDM_Odm, expr, fmt) \ #define ODM_RT_ASSERT(pDM_Odm, expr, fmt) \
if (!(expr)) { \ if (!(expr)) { \
DbgPrint( "Assertion failed! %s at ......\n", #expr); \ DbgPrint("Assertion failed! %s at ......\n", #expr); \
DbgPrint( " ......%s,%s,line=%d\n", __FILE__, \ DbgPrint(" ......%s,%s,line=%d\n", __FILE__, \
__func__, __LINE__); \ __func__, __LINE__); \
RT_PRINTK fmt; \ RT_PRINTK fmt; \
ASSERT(false); \ ASSERT(false); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment