mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 19:13:47 +02:00
staging: rtl8192e: Remove unused variable int_log
int_log is initialized and incremented but never evaluated. Remove resulting dead code. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/e2edcde052cc3c47e6e6b94d09e460b8cf6a49a8.1669156825.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aae3567db0
commit
e0005909e5
|
|
@ -154,21 +154,6 @@ struct tx_fwinfo_8190pci {
|
|||
|
||||
};
|
||||
|
||||
struct log_int_8190 {
|
||||
u32 nIMR_COMDOK;
|
||||
u32 nIMR_MGNTDOK;
|
||||
u32 nIMR_HIGH;
|
||||
u32 nIMR_VODOK;
|
||||
u32 nIMR_VIDOK;
|
||||
u32 nIMR_BEDOK;
|
||||
u32 nIMR_BKDOK;
|
||||
u32 nIMR_ROK;
|
||||
u32 nIMR_RCOK;
|
||||
u32 nIMR_TBDOK;
|
||||
u32 nIMR_BDOK;
|
||||
u32 nIMR_RXFOVW;
|
||||
};
|
||||
|
||||
struct phy_ofdm_rx_status_rxsc_sgien_exintfflag {
|
||||
u8 reserved:4;
|
||||
u8 rxsc:2;
|
||||
|
|
|
|||
|
|
@ -866,8 +866,6 @@ static void _rtl92e_init_priv_variable(struct net_device *dev)
|
|||
priv->rst_progress = RESET_TYPE_NORESET;
|
||||
priv->force_reset = false;
|
||||
memset(priv->rtllib->swcamtable, 0, sizeof(struct sw_cam_table) * 32);
|
||||
|
||||
memset(&priv->int_log, 0, sizeof(struct log_int_8190));
|
||||
priv->rx_ctr = 0;
|
||||
priv->rtllib->wx_set_enc = 0;
|
||||
priv->hw_radio_off = false;
|
||||
|
|
@ -2185,7 +2183,6 @@ static irqreturn_t _rtl92e_irq(int irq, void *netdev)
|
|||
|
||||
if (inta & IMR_ROK) {
|
||||
priv->stats.rxint++;
|
||||
priv->int_log.nIMR_ROK++;
|
||||
tasklet_schedule(&priv->irq_rx_tasklet);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -317,8 +317,6 @@ struct r8192_priv {
|
|||
|
||||
struct work_struct reset_wq;
|
||||
|
||||
struct log_int_8190 int_log;
|
||||
|
||||
enum rt_customer_id CustomerID;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user