diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-09-23 10:38:26 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 09:13:54 -0700 |
commit | 30399bbfa698689e81f9507992034fe09700941b (patch) | |
tree | 0932d9a4d7cb6198cb64bf9d94a52407b25f03ec /drivers/misc | |
parent | b9be2c60fce7a93723403488a2f5d508ff7d3d2f (diff) | |
download | talos-obmc-linux-30399bbfa698689e81f9507992034fe09700941b.tar.gz talos-obmc-linux-30399bbfa698689e81f9507992034fe09700941b.zip |
misc: pti: 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/pti.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/misc/pti.c b/drivers/misc/pti.c index f84ff0c06035..eda38cbe8530 100644 --- a/drivers/misc/pti.c +++ b/drivers/misc/pti.c @@ -892,7 +892,6 @@ static void pti_pci_remove(struct pci_dev *pdev) } iounmap(drv_data->pti_ioaddr); - pci_set_drvdata(pdev, NULL); kfree(drv_data); pci_release_region(pdev, 1); pci_disable_device(pdev); |