staging: rtl8723bs: Fix checkpatch.pl errors
authorSidong Yang <realwakka@gmail.com>
Mon, 14 May 2018 16:26:41 +0000 (16:26 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 May 2018 07:31:38 +0000 (09:31 +0200)
Move open brace to same line with enum.
Remove prohibited space before ','.

Signed-off-by: Sidong Yang <realwakka@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/include/rtw_pwrctrl.h

index 3cf0ba3..72df6cf 100644 (file)
 #define BTCOEX_ALIVE   BIT(4)
 
 
-enum Power_Mgnt
-{
-       PS_MODE_ACTIVE  = 0     ,
-       PS_MODE_MIN                     ,
-       PS_MODE_MAX                     ,
-       PS_MODE_DTIM                    ,       /* PS_MODE_SELF_DEFINED */
-       PS_MODE_VOIP                    ,
-       PS_MODE_UAPSD_WMM       ,
-       PS_MODE_UAPSD                   ,
-       PS_MODE_IBSS                    ,
-       PS_MODE_WWLAN           ,
-       PM_Radio_Off                    ,
-       PM_Card_Disable         ,
+enum Power_Mgnt {
+       PS_MODE_ACTIVE  = 0,
+       PS_MODE_MIN,
+       PS_MODE_MAX,
+       PS_MODE_DTIM,   /* PS_MODE_SELF_DEFINED */
+       PS_MODE_VOIP,
+       PS_MODE_UAPSD_WMM,
+       PS_MODE_UAPSD,
+       PS_MODE_IBSS,
+       PS_MODE_WWLAN,
+       PM_Radio_Off,
+       PM_Card_Disable,
        PS_MODE_NUM,
 };