Commit a9ca0c59 authored by Jose Carlos Cazarin Filho's avatar Jose Carlos Cazarin Filho Committed by Greg Kroah-Hartman
Browse files

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: default avatarJose Carlos Cazarin Filho <joseespiriki@gmail.com>
Link: https://lore.kernel.org/r/20190806234539.7513-1-joseespiriki@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5222a8fe
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -81,15 +81,13 @@ enum dot11AuthAlgrthmNum {
};

/*  Scan type including active and passive scan. */
typedef enum _RT_SCAN_TYPE
{
typedef enum _RT_SCAN_TYPE {
	SCAN_PASSIVE,
	SCAN_ACTIVE,
	SCAN_MIX,
}RT_SCAN_TYPE, *PRT_SCAN_TYPE;

enum  _BAND
{
enum  _BAND {
	GHZ24_50 = 0,
	GHZ_50,
	GHZ_24,