mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-11 23:23:52 +08:00
staging: rtl8192u: fix '{' following enum go on the same line
Fixes checkpatch.pl error: ERROR: open brace '{' following enum go on the same line Signed-off-by: Aastha Gupta <aastha.gupta4104@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
65d96ef922
commit
448c16cb14
@ -1486,15 +1486,13 @@ typedef enum _Fsync_State {
|
||||
} Fsync_State;
|
||||
|
||||
// Power save mode configured.
|
||||
typedef enum _RT_PS_MODE
|
||||
{
|
||||
typedef enum _RT_PS_MODE {
|
||||
eActive, // Active/Continuous access.
|
||||
eMaxPs, // Max power save mode.
|
||||
eFastPs // Fast power save mode.
|
||||
} RT_PS_MODE;
|
||||
|
||||
typedef enum _IPS_CALLBACK_FUNCION
|
||||
{
|
||||
typedef enum _IPS_CALLBACK_FUNCION {
|
||||
IPS_CALLBACK_NONE = 0,
|
||||
IPS_CALLBACK_MGNT_LINK_REQUEST = 1,
|
||||
IPS_CALLBACK_JOIN_REQUEST = 2,
|
||||
@ -1572,8 +1570,7 @@ typedef u32 RT_RF_CHANGE_SOURCE;
|
||||
#define RF_CHANGE_BY_IPS BIT(28)
|
||||
#define RF_CHANGE_BY_INIT 0 // Do not change the RFOff reason. Defined by Bruce, 2008-01-17.
|
||||
|
||||
typedef enum
|
||||
{
|
||||
typedef enum {
|
||||
COUNTRY_CODE_FCC = 0,
|
||||
COUNTRY_CODE_IC = 1,
|
||||
COUNTRY_CODE_ETSI = 2,
|
||||
|
Loading…
Reference in New Issue
Block a user