Commit d6d42dfb authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

Staging: rtl8192e: Hoist assign from if

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 53756de3
...@@ -1934,7 +1934,8 @@ ieee80211_rx_auth_rq(struct ieee80211_device *ieee, struct sk_buff *skb) ...@@ -1934,7 +1934,8 @@ ieee80211_rx_auth_rq(struct ieee80211_device *ieee, struct sk_buff *skb)
//IEEE80211DMESG("Rx probe"); //IEEE80211DMESG("Rx probe");
ieee->softmac_stats.rx_auth_rq++; ieee->softmac_stats.rx_auth_rq++;
if ((status = auth_rq_parse(skb, dest))!= -1){ status = auth_rq_parse(skb, dest);
if (status != -1) {
ieee80211_resp_to_auth(ieee, status, dest); ieee80211_resp_to_auth(ieee, status, dest);
} }
//DMESG("Dest is "MACSTR, MAC2STR(dest)); //DMESG("Dest is "MACSTR, MAC2STR(dest));
......
...@@ -1864,13 +1864,15 @@ static short rtl8192_pci_initdescring(struct net_device *dev) ...@@ -1864,13 +1864,15 @@ static short rtl8192_pci_initdescring(struct net_device *dev)
/* general process for other queue */ /* general process for other queue */
for (i = 0; i < MAX_TX_QUEUE_COUNT; i++) { for (i = 0; i < MAX_TX_QUEUE_COUNT; i++) {
if ((ret = rtl8192_alloc_tx_desc_ring(dev, i, priv->txringcount))) ret = rtl8192_alloc_tx_desc_ring(dev, i, priv->txringcount);
if (ret)
goto err_free_rings; goto err_free_rings;
} }
#if 0 #if 0
/* specific process for hardware beacon process */ /* specific process for hardware beacon process */
if ((ret = rtl8192_alloc_tx_desc_ring(dev, MAX_TX_QUEUE_COUNT - 1, 2))) ret = rtl8192_alloc_tx_desc_ring(dev, MAX_TX_QUEUE_COUNT - 1, 2);
if (ret)
goto err_free_rings; goto err_free_rings;
#endif #endif
......
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