Skip to content

Commit

Permalink
staging: rtl8192e: Delete dead code
Browse files Browse the repository at this point in the history
Signed-off-by: Mike McCormack <mikem@ring3k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Mike McCormack authored and Greg Kroah-Hartman committed Feb 9, 2011
1 parent 80a4dea commit fb53c2b
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions drivers/staging/rtl8192e/r8192E_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -5375,12 +5375,13 @@ static void __devexit rtl8192_pci_disconnect(struct pci_dev *pdev)
{
struct net_device *dev = pci_get_drvdata(pdev);
struct r8192_priv *priv ;
u32 i;

if(dev){
if (dev) {

unregister_netdev(dev);

priv=ieee80211_priv(dev);
priv = ieee80211_priv(dev);

rtl8192_proc_remove_one(dev);

Expand All @@ -5390,27 +5391,17 @@ static void __devexit rtl8192_pci_disconnect(struct pci_dev *pdev)
vfree(priv->pFirmware);
priv->pFirmware = NULL;
}
// priv->rf_close(dev);
// rtl8192_usb_deleteendpoints(dev);
destroy_workqueue(priv->priv_wq);
/* redundant with rtl8192_down */
// rtl8192_irq_disable(dev);
// rtl8192_reset(dev);
// mdelay(10);
{
u32 i;
/* free tx/rx rings */
rtl8192_free_rx_ring(dev);
for (i = 0; i < MAX_TX_QUEUE_COUNT; i++) {
rtl8192_free_tx_ring(dev, i);
}
}
if(priv->irq){

/* free tx/rx rings */
rtl8192_free_rx_ring(dev);
for (i = 0; i < MAX_TX_QUEUE_COUNT; i++)
rtl8192_free_tx_ring(dev, i);

if (priv->irq) {
printk("Freeing irq %d\n",dev->irq);
free_irq(dev->irq, dev);
priv->irq=0;

}

#ifdef CONFIG_RTL8180_IO_MAP
Expand Down

0 comments on commit fb53c2b

Please sign in to comment.