Commit e0005909 authored by Philipp Hortmann's avatar Philipp Hortmann Committed by Greg Kroah-Hartman

staging: rtl8192e: Remove unused variable int_log

int_log is initialized and incremented but never evaluated. Remove
resulting dead code.
Signed-off-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/e2edcde052cc3c47e6e6b94d09e460b8cf6a49a8.1669156825.git.philipp.g.hortmann@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent aae3567d
...@@ -154,21 +154,6 @@ struct tx_fwinfo_8190pci { ...@@ -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 { struct phy_ofdm_rx_status_rxsc_sgien_exintfflag {
u8 reserved:4; u8 reserved:4;
u8 rxsc:2; u8 rxsc:2;
......
...@@ -866,8 +866,6 @@ static void _rtl92e_init_priv_variable(struct net_device *dev) ...@@ -866,8 +866,6 @@ static void _rtl92e_init_priv_variable(struct net_device *dev)
priv->rst_progress = RESET_TYPE_NORESET; priv->rst_progress = RESET_TYPE_NORESET;
priv->force_reset = false; priv->force_reset = false;
memset(priv->rtllib->swcamtable, 0, sizeof(struct sw_cam_table) * 32); 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->rx_ctr = 0;
priv->rtllib->wx_set_enc = 0; priv->rtllib->wx_set_enc = 0;
priv->hw_radio_off = false; priv->hw_radio_off = false;
...@@ -2185,7 +2183,6 @@ static irqreturn_t _rtl92e_irq(int irq, void *netdev) ...@@ -2185,7 +2183,6 @@ static irqreturn_t _rtl92e_irq(int irq, void *netdev)
if (inta & IMR_ROK) { if (inta & IMR_ROK) {
priv->stats.rxint++; priv->stats.rxint++;
priv->int_log.nIMR_ROK++;
tasklet_schedule(&priv->irq_rx_tasklet); tasklet_schedule(&priv->irq_rx_tasklet);
} }
......
...@@ -317,8 +317,6 @@ struct r8192_priv { ...@@ -317,8 +317,6 @@ struct r8192_priv {
struct work_struct reset_wq; struct work_struct reset_wq;
struct log_int_8190 int_log;
enum rt_customer_id CustomerID; enum 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