Commit ebd0dcbd authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman

staging:rtl8192u: Refactor enum dm_dig_alg_e - Style

The enumerated type dm_dig_alg_e is only used by one variable in the
code, 'dig_algorithm', a member variable of the structure dig. That
member variable was defined to be of type 'u8' thus negating any
advantage of the use of an enumerated type, (compiler type-checking).

The type of the variable 'dig_algorithm' has been change to reflect
its use of the enumeration and the enumerated type moved in the file
so that it appears before it is used in the file.

Additionally the 'typedef' has been removed to clear the checkpatch
issue with defining new types, and the type renamed to
enum dig_algorithm.

The enumerated constant DIG_ALGO_MAX has been removed from the type
since it is never used in the code.

These changes are all coding style in nature and as such should have
no impact on runtime code execution.
Signed-off-by: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fb2a2729
...@@ -65,6 +65,11 @@ ...@@ -65,6 +65,11 @@
/*------------------------------Define structure----------------------------*/ /*------------------------------Define structure----------------------------*/
enum dig_algorithm {
DIG_ALGO_BY_FALSE_ALARM = 0,
DIG_ALGO_BY_RSSI = 1,
};
enum dynamic_init_gain_state { enum dynamic_init_gain_state {
DM_STA_DIG_OFF = 0, DM_STA_DIG_OFF = 0,
DM_STA_DIG_ON, DM_STA_DIG_ON,
...@@ -74,7 +79,7 @@ enum dynamic_init_gain_state { ...@@ -74,7 +79,7 @@ enum dynamic_init_gain_state {
/* 2007/10/04 MH Define upper and lower threshold of DIG enable or disable. */ /* 2007/10/04 MH Define upper and lower threshold of DIG enable or disable. */
struct dig { struct dig {
u8 dig_enable_flag; u8 dig_enable_flag;
u8 dig_algorithm; enum dig_algorithm dig_algorithm;
u8 dbg_mode; u8 dbg_mode;
u8 dig_algorithm_switch; u8 dig_algorithm_switch;
...@@ -105,12 +110,6 @@ struct dig { ...@@ -105,12 +110,6 @@ struct dig {
long rssi_val; long rssi_val;
}; };
typedef enum tag_dig_algorithm_definition {
DIG_ALGO_BY_FALSE_ALARM = 0,
DIG_ALGO_BY_RSSI = 1,
DIG_ALGO_MAX
} dm_dig_alg_e;
typedef enum tag_dig_dbgmode_definition { typedef enum tag_dig_dbgmode_definition {
DIG_DBG_OFF = 0, DIG_DBG_OFF = 0,
DIG_DBG_ON = 1, DIG_DBG_ON = 1,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment