staging: rtl8192e: Remove unused variable skb_aggQ
skb_aggQ is initialized, never used and purged. Remove resulting dead code. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/3197be3cb412eea1c662a5bec1b1afda2cee675d.1669156825.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
24a525a671
commit
d694a05fda
|
@ -1946,8 +1946,6 @@ void rtl92e_stop_adapter(struct net_device *dev, bool reset)
|
|||
|
||||
for (i = 0; i < MAX_QUEUE_SIZE; i++)
|
||||
skb_queue_purge(&priv->rtllib->skb_waitQ[i]);
|
||||
for (i = 0; i < MAX_QUEUE_SIZE; i++)
|
||||
skb_queue_purge(&priv->rtllib->skb_aggQ[i]);
|
||||
|
||||
skb_queue_purge(&priv->skb_queue);
|
||||
}
|
||||
|
|
|
@ -903,8 +903,6 @@ static void _rtl92e_init_priv_variable(struct net_device *dev)
|
|||
|
||||
for (i = 0; i < MAX_QUEUE_SIZE; i++)
|
||||
skb_queue_head_init(&priv->rtllib->skb_waitQ[i]);
|
||||
for (i = 0; i < MAX_QUEUE_SIZE; i++)
|
||||
skb_queue_head_init(&priv->rtllib->skb_aggQ[i]);
|
||||
}
|
||||
|
||||
static void _rtl92e_init_priv_lock(struct r8192_priv *priv)
|
||||
|
|
|
@ -1624,7 +1624,6 @@ struct rtllib_device {
|
|||
int mgmt_queue_tail;
|
||||
u8 AsocRetryCount;
|
||||
struct sk_buff_head skb_waitQ[MAX_QUEUE_SIZE];
|
||||
struct sk_buff_head skb_aggQ[MAX_QUEUE_SIZE];
|
||||
|
||||
bool bdynamic_txpower_enable;
|
||||
|
||||
|
|
Loading…
Reference in New Issue