aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/denali_pci.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-23 10:32:27 +0900
committerBrian Norris <computersforpeace@gmail.com>2013-11-06 23:32:44 -0800
commit60d0dc7fa1615bc8b021fef253f3a17dd4f90e70 (patch)
tree081333c28cf7be2f49a2373656bb286b7e6c675d /drivers/mtd/nand/denali_pci.c
parentmtd: scb2_flash: remove unnecessary pci_set_drvdata() (diff)
downloadlinux-dev-60d0dc7fa1615bc8b021fef253f3a17dd4f90e70.tar.xz
linux-dev-60d0dc7fa1615bc8b021fef253f3a17dd4f90e70.zip
mtd: denali: 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: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand/denali_pci.c')
-rw-r--r--drivers/mtd/nand/denali_pci.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mtd/nand/denali_pci.c b/drivers/mtd/nand/denali_pci.c
index e3e46623b2b4..033f177a6369 100644
--- a/drivers/mtd/nand/denali_pci.c
+++ b/drivers/mtd/nand/denali_pci.c
@@ -119,7 +119,6 @@ static void denali_pci_remove(struct pci_dev *dev)
iounmap(denali->flash_mem);
pci_release_regions(dev);
pci_disable_device(dev);
- pci_set_drvdata(dev, NULL);
kfree(denali);
}