net: fealnx: remove unnecessary pci_set_drvdata()
authorJingoo Han <[email protected]>
Mon, 21 Oct 2013 02:12:15 +0000 (11:12 +0900)
committerDavid S. Miller <[email protected]>
Mon, 21 Oct 2013 21:21:01 +0000 (17:21 -0400)
The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.

Signed-off-by: Jingoo Han <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/fealnx.c

index c706b7a9397ed6f13dedfee142f99ae50a98ff98..4b22a9579f859e7e9d61da22d5175632d6441d2d 100644 (file)
@@ -699,7 +699,6 @@ static void fealnx_remove_one(struct pci_dev *pdev)
                pci_iounmap(pdev, np->mem);
                free_netdev(dev);
                pci_release_regions(pdev);
-               pci_set_drvdata(pdev, NULL);
        } else
                printk(KERN_ERR "fealnx: remove for unknown device\n");
 }