]> Git Repo - linux.git/commitdiff
net: tehuti: remove unnecessary pci_set_drvdata()
authorJingoo Han <[email protected]>
Wed, 23 Oct 2013 07:07:51 +0000 (16:07 +0900)
committerDavid S. Miller <[email protected]>
Wed, 23 Oct 2013 20:58:41 +0000 (16:58 -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/tehuti/tehuti.c

index 571452e786d5103460180e54481cd11ae88e4927..dd0dd6279b4eec8168c006457643568032ee358f 100644 (file)
@@ -2447,7 +2447,6 @@ static void bdx_remove(struct pci_dev *pdev)
        iounmap(nic->regs);
        pci_release_regions(pdev);
        pci_disable_device(pdev);
-       pci_set_drvdata(pdev, NULL);
        vfree(nic);
 
        RET();
This page took 0.053402 seconds and 4 git commands to generate.