Commit c13ac63b authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef LOG_INTERRUPT_8190_T to struct log_int_8190

Remove typedef from struct.
Rename struct.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent a07dc3d1
......@@ -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;
......
......@@ -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;
......
......@@ -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;
......
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