aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/pti.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-23 10:38:26 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-26 09:13:54 -0700
commit30399bbfa698689e81f9507992034fe09700941b (patch)
tree0932d9a4d7cb6198cb64bf9d94a52407b25f03ec /drivers/misc/pti.c
parentmisc: mei: remove unnecessary pci_set_drvdata() (diff)
downloadlinux-dev-30399bbfa698689e81f9507992034fe09700941b.tar.xz
linux-dev-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/pti.c')
-rw-r--r--drivers/misc/pti.c1
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);