From: Jingoo Han Date: Thu, 12 Sep 2013 06:54:28 +0000 (+0900) Subject: video: gxfb: remove unnecessary pci_set_drvdata() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=44f75bfdbea0a2364dda7d733b5a2e4e31de5482;p=deliverable%2Flinux.git video: gxfb: 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: Tomi Valkeinen --- diff --git a/drivers/video/geode/gxfb_core.c b/drivers/video/geode/gxfb_core.c index 19f0c1add747..a42d74d6eded 100644 --- a/drivers/video/geode/gxfb_core.c +++ b/drivers/video/geode/gxfb_core.c @@ -471,7 +471,6 @@ static void gxfb_remove(struct pci_dev *pdev) pci_release_region(pdev, 1); fb_dealloc_cmap(&info->cmap); - pci_set_drvdata(pdev, NULL); framebuffer_release(info); }