mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-29 07:33:39 +00:00
rtl8188eu: Convert "typedef struct RF_SHADOW_T" to "struct rf_shadow"
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
ba0934f3c8
commit
b029dc2b58
1 changed files with 4 additions and 4 deletions
|
@ -48,7 +48,7 @@
|
||||||
|
|
||||||
/*---------------------------Define Local Constant---------------------------*/
|
/*---------------------------Define Local Constant---------------------------*/
|
||||||
/* Define local structure for debug!!!!! */
|
/* Define local structure for debug!!!!! */
|
||||||
typedef struct RF_Shadow_Compare_Map {
|
struct rf_shadow {
|
||||||
/* Shadow register value */
|
/* Shadow register value */
|
||||||
u32 Value;
|
u32 Value;
|
||||||
/* Compare or not flag */
|
/* Compare or not flag */
|
||||||
|
@ -59,7 +59,8 @@ typedef struct RF_Shadow_Compare_Map {
|
||||||
u8 Recorver;
|
u8 Recorver;
|
||||||
/* */
|
/* */
|
||||||
u8 Driver_Write;
|
u8 Driver_Write;
|
||||||
}RF_SHADOW_T;
|
};
|
||||||
|
|
||||||
/*---------------------------Define Local Constant---------------------------*/
|
/*---------------------------Define Local Constant---------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -69,8 +70,7 @@ typedef struct RF_Shadow_Compare_Map {
|
||||||
|
|
||||||
/*------------------------Define local variable------------------------------*/
|
/*------------------------Define local variable------------------------------*/
|
||||||
/* 2008/11/20 MH For Debug only, RF */
|
/* 2008/11/20 MH For Debug only, RF */
|
||||||
/* static RF_SHADOW_T RF_Shadow[RF6052_MAX_PATH][RF6052_MAX_REG] = {0}; */
|
static struct rf_shadow RF_Shadow[RF6052_MAX_PATH][RF6052_MAX_REG];
|
||||||
static RF_SHADOW_T RF_Shadow[RF6052_MAX_PATH][RF6052_MAX_REG];
|
|
||||||
/*------------------------Define local variable------------------------------*/
|
/*------------------------Define local variable------------------------------*/
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue