aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723bs
diff options
context:
space:
mode:
authorWilliam Tustumi <whatust@gmail.com>2019-04-05 00:44:22 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-04-16 13:31:58 +0200
commitc8ab348df0252be8869f4cbab0263a0f833c3232 (patch)
treef44f18354b0f1226dea6bb444164b8261ca995a4 /drivers/staging/rtl8723bs
parentstaging: rtl8192u: ieee80211: add space around '==' and before '(' (diff)
downloadlinux-dev-c8ab348df0252be8869f4cbab0263a0f833c3232.tar.xz
linux-dev-c8ab348df0252be8869f4cbab0263a0f833c3232.zip
staging: rtl8723bs: add space after enum declaration
Add space between "enum TXDESC_SC" and '{' at line 86. Fix the following error from checkpatch.pl WARNING: missing space after enum definition +enum TXDESC_SC{ Signed-off-by: William Tustumi <whatust@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723bs')
-rw-r--r--drivers/staging/rtl8723bs/include/rtw_xmit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/include/rtw_xmit.h b/drivers/staging/rtl8723bs/include/rtw_xmit.h
index 37f42b2f22f1..ea1396005a13 100644
--- a/drivers/staging/rtl8723bs/include/rtw_xmit.h
+++ b/drivers/staging/rtl8723bs/include/rtw_xmit.h
@@ -83,7 +83,7 @@ do{\
#define TXDESC_OFFSET TXDESC_SIZE
-enum TXDESC_SC{
+enum TXDESC_SC {
SC_DONT_CARE = 0x00,
SC_UPPER = 0x01,
SC_LOWER = 0x02,