Staging: rtl8192e: Clean up rtl8192_pci_initdescring()

Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Mike McCormack 2010-09-24 18:39:41 +09:00 committed by Greg Kroah-Hartman
parent 067ba6cf6c
commit 1f1f19ff62

View File

@ -1598,7 +1598,6 @@ static int rtl8192_alloc_tx_desc_ring(struct net_device *dev,
return 0;
}
static short rtl8192_pci_initdescring(struct net_device *dev)
{
u32 ret;
@ -1606,10 +1605,8 @@ static short rtl8192_pci_initdescring(struct net_device *dev)
struct r8192_priv *priv = ieee80211_priv(dev);
ret = rtl8192_alloc_rx_desc_ring(dev);
if (ret) {
if (ret)
return ret;
}
/* general process for other queue */
for (i = 0; i < MAX_TX_QUEUE_COUNT; i++) {
@ -1618,13 +1615,6 @@ static short rtl8192_pci_initdescring(struct net_device *dev)
goto err_free_rings;
}
#if 0
/* specific process for hardware beacon process */
ret = rtl8192_alloc_tx_desc_ring(dev, MAX_TX_QUEUE_COUNT - 1, 2);
if (ret)
goto err_free_rings;
#endif
return 0;
err_free_rings: