diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-09-22 21:32:27 -0400 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2013-11-07 02:32:44 -0500 |
commit | 60d0dc7fa1615bc8b021fef253f3a17dd4f90e70 (patch) | |
tree | 081333c28cf7be2f49a2373656bb286b7e6c675d | |
parent | 4d47011b39a8a2cd29560fee708681b20a5e9a8b (diff) |
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>
-rw-r--r-- | drivers/mtd/nand/denali_pci.c | 1 |
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) | |||
119 | iounmap(denali->flash_mem); | 119 | iounmap(denali->flash_mem); |
120 | pci_release_regions(dev); | 120 | pci_release_regions(dev); |
121 | pci_disable_device(dev); | 121 | pci_disable_device(dev); |
122 | pci_set_drvdata(dev, NULL); | ||
123 | kfree(denali); | 122 | kfree(denali); |
124 | } | 123 | } |
125 | 124 | ||