Staging: w35und: Convert typedef LOCAL_PARA to struct wb_local_para

Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Pekka Enberg 2009-12-18 23:08:15 +02:00 committed by Greg Kroah-Hartman
parent 3fc0d278e3
commit 1bc5e65129
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
struct wbsoft_priv { struct wbsoft_priv {
u32 adapterIndex; // 20060703.4 Add for using padapterContext global adapter point u32 adapterIndex; // 20060703.4 Add for using padapterContext global adapter point
WB_LOCALDESCRIPT sLocalPara; // Myself connected parameters struct wb_local_para sLocalPara; // Myself connected parameters
MLME_FRAME sMlmeFrame; // connect to peerSTA parameters MLME_FRAME sMlmeFrame; // connect to peerSTA parameters

View file

@ -136,7 +136,7 @@ typedef struct _RadioOff
} RadioOff, *psRadioOff; } RadioOff, *psRadioOff;
//=========================================================================== //===========================================================================
typedef struct LOCAL_PARA struct wb_local_para
{ {
u8 PermanentAddress[ MAC_ADDR_LENGTH + 2 ]; // read from EPROM, manufacture set for each NetCard u8 PermanentAddress[ MAC_ADDR_LENGTH + 2 ]; // read from EPROM, manufacture set for each NetCard
u8 ThisMacAddress[ MAC_ADDR_LENGTH + 2 ]; // the driver will use actually. u8 ThisMacAddress[ MAC_ADDR_LENGTH + 2 ]; // the driver will use actually.
@ -274,6 +274,6 @@ typedef struct LOCAL_PARA
u16 IE_Append_size; u16 IE_Append_size;
u16 reserved_7; u16 reserved_7;
} WB_LOCALDESCRIPT, *PWB_LOCALDESCRIPT; };
#endif #endif