mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
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>
This commit is contained in:
parent
5222a8fe6b
commit
a9ca0c5951
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user