aboutsummaryrefslogtreecommitdiff
path: root/drivers/bcma
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-11-25 12:37:24 +0900
committerJohn W. Linville <linville@tuxdriver.com>2013-12-05 14:56:39 -0500
commit0a7a109e134c619245e6e77dd93260fa0b427684 (patch)
tree6be7245a8f81c2b2ec1d186f88d2f74da3259e45 /drivers/bcma
parent85f66a0e9bddb37570788ae040a9755d64127a2e (diff)
bcma: pci: remove unnecessary pci_set_drvdata()
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 <jg1.han@samsung.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r--drivers/bcma/host_pci.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/bcma/host_pci.c b/drivers/bcma/host_pci.c
index 6fb98b53533..12a4ff75135 100644
--- a/drivers/bcma/host_pci.c
+++ b/drivers/bcma/host_pci.c
@@ -238,7 +238,6 @@ static void bcma_host_pci_remove(struct pci_dev *dev)
pci_release_regions(dev);
pci_disable_device(dev);
kfree(bus);
- pci_set_drvdata(dev, NULL);
}
#ifdef CONFIG_PM_SLEEP