1
0
Fork 0

staging: rtl8723bs: fix brace position in enum declaration

Fix two checkpath errors of type:
"open brace '{' following enum go on the same line"

Signed-off-by: Jose Carlos Cazarin Filho <joseespiriki@gmail.com>
Link: https://lore.kernel.org/r/20190806234539.7513-1-joseespiriki@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
alistair/sunxi64-5.4-dsi
Jose Carlos Cazarin Filho 2019-08-06 20:45:39 -03:00 committed by Greg Kroah-Hartman
parent 5222a8fe6b
commit a9ca0c5951
1 changed files with 2 additions and 4 deletions

View File

@ -81,15 +81,13 @@ enum dot11AuthAlgrthmNum {
}; };
/* Scan type including active and passive scan. */ /* Scan type including active and passive scan. */
typedef enum _RT_SCAN_TYPE typedef enum _RT_SCAN_TYPE {
{
SCAN_PASSIVE, SCAN_PASSIVE,
SCAN_ACTIVE, SCAN_ACTIVE,
SCAN_MIX, SCAN_MIX,
}RT_SCAN_TYPE, *PRT_SCAN_TYPE; }RT_SCAN_TYPE, *PRT_SCAN_TYPE;
enum _BAND enum _BAND {
{
GHZ24_50 = 0, GHZ24_50 = 0,
GHZ_50, GHZ_50,
GHZ_24, GHZ_24,