From: Jingoo Han Date: Tue, 26 Nov 2013 02:11:15 +0000 (-0800) Subject: Input: serio - remove unnecessary pci_set_drvdata() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=d0134e9fcfa393f64b4b406a6aac90d9b929a704;p=deliverable%2Flinux.git Input: serio - 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 Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/serio/pcips2.c b/drivers/input/serio/pcips2.c index 76f83836fd5a..13062f667e82 100644 --- a/drivers/input/serio/pcips2.c +++ b/drivers/input/serio/pcips2.c @@ -181,7 +181,6 @@ static void pcips2_remove(struct pci_dev *dev) struct pcips2_data *ps2if = pci_get_drvdata(dev); serio_unregister_port(ps2if->io); - pci_set_drvdata(dev, NULL); kfree(ps2if); pci_release_regions(dev); pci_disable_device(dev);