mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 15:07:13 -04:00
staging: rtl8192e: Remove unused variable reset_in_progress
priv->reset_in_progress is set to false and never changed. All equations result accordingly. Remove dead code. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/25259d69b955472a74725f3665238fb6daee76b4.1696165351.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
287fcbd3e6
commit
9b604554c4
@@ -1132,7 +1132,6 @@ static void _rtl92e_watchdog_wq_cb(void *data)
|
||||
spin_unlock_irqrestore(&priv->tx_lock, flags);
|
||||
|
||||
priv->force_reset = false;
|
||||
priv->reset_in_progress = false;
|
||||
}
|
||||
|
||||
static void _rtl92e_watchdog_timer_cb(struct timer_list *t)
|
||||
@@ -1218,8 +1217,7 @@ static void _rtl92e_hard_data_xmit(struct sk_buff *skb, struct net_device *dev,
|
||||
MAX_DEV_ADDR_SIZE);
|
||||
u8 queue_index = tcb_desc->queue_index;
|
||||
|
||||
if ((priv->rtllib->rf_power_state == rf_off) || !priv->up ||
|
||||
priv->reset_in_progress) {
|
||||
if ((priv->rtllib->rf_power_state == rf_off) || !priv->up) {
|
||||
kfree_skb(skb);
|
||||
return;
|
||||
}
|
||||
@@ -1252,7 +1250,7 @@ static int _rtl92e_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
|
||||
|
||||
if (queue_index != TXCMD_QUEUE) {
|
||||
if ((priv->rtllib->rf_power_state == rf_off) ||
|
||||
!priv->up || priv->reset_in_progress) {
|
||||
!priv->up) {
|
||||
kfree_skb(skb);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -372,7 +372,6 @@ struct r8192_priv {
|
||||
|
||||
u16 tx_counter;
|
||||
u16 rx_ctr;
|
||||
bool reset_in_progress;
|
||||
bool force_reset;
|
||||
bool force_lps;
|
||||
};
|
||||
|
||||
@@ -530,11 +530,6 @@ static void _rtl92e_dm_tx_power_tracking_callback_tssi(struct net_device *dev)
|
||||
if (Pwr_Flag == 0) {
|
||||
mdelay(1);
|
||||
|
||||
if (priv->reset_in_progress) {
|
||||
rtl92e_writeb(dev, Pw_Track_Flag, 0);
|
||||
rtl92e_writeb(dev, FW_Busy_Flag, 0);
|
||||
return;
|
||||
}
|
||||
if (priv->rtllib->rf_power_state != rf_on) {
|
||||
rtl92e_writeb(dev, Pw_Track_Flag, 0);
|
||||
rtl92e_writeb(dev, FW_Busy_Flag, 0);
|
||||
|
||||
Reference in New Issue
Block a user