staging: rtl8192e: Convert typedef LOG_INTERRUPT_8190_T to struct log_int_8190

Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-18 21:32:47 -05:00
parent a07dc3d145
commit c13ac63b60
3 changed files with 4 additions and 5 deletions

View File

@ -256,8 +256,7 @@ struct tx_fwinfo_8190pci {
#define RX_DRIVER_INFO_SIZE 8
typedef struct _LOG_INTERRUPT_8190
{
struct log_int_8190 {
u32 nIMR_COMDOK;
u32 nIMR_MGNTDOK;
u32 nIMR_HIGH;
@ -270,7 +269,7 @@ typedef struct _LOG_INTERRUPT_8190
u32 nIMR_TBDOK;
u32 nIMR_BDOK;
u32 nIMR_RXFOVW;
} LOG_INTERRUPT_8190_T, *PLOG_INTERRUPT_8190_T;
};
typedef struct _phy_ofdm_rx_status_rxsc_sgien_exintfflag{
u8 reserved:4;

View File

@ -1226,7 +1226,7 @@ static void rtl8192_init_priv_variable(struct net_device* dev)
priv->force_reset = false;
memset(priv->rtllib->swcamtable,0,sizeof(SW_CAM_TABLE)*32);
memset(&priv->InterruptLog,0,sizeof(LOG_INTERRUPT_8190_T));
memset(&priv->InterruptLog,0,sizeof(struct log_int_8190));
priv->RxCounter = 0;
priv->rtllib->wx_set_enc = 0;
priv->bHwRadioOff = false;

View File

@ -588,7 +588,7 @@ typedef struct r8192_priv
work_struct_rsl reset_wq;
LOG_INTERRUPT_8190_T InterruptLog;
struct log_int_8190 InterruptLog;
RT_CUSTOMER_ID CustomerID;