aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/cyber2000fb.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-12 02:52:30 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-09-19 06:30:06 -0400
commit1df6af41bd6118681a18445c1b7f94f6893a28b6 (patch)
tree18ee3dec70968841b83c4a72f5c708de187c8030 /drivers/video/cyber2000fb.c
parentd5ddbb00b85486c458854b61f6002a6c8edee0c3 (diff)
video: cyber2000fb: 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: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/cyber2000fb.c')
-rw-r--r--drivers/video/cyber2000fb.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/video/cyber2000fb.c b/drivers/video/cyber2000fb.c
index 57886787ead0..c824b4223b83 100644
--- a/drivers/video/cyber2000fb.c
+++ b/drivers/video/cyber2000fb.c
@@ -1871,11 +1871,6 @@ static void cyberpro_pci_remove(struct pci_dev *dev)
1871 iounmap(cfb->region); 1871 iounmap(cfb->region);
1872 cyberpro_free_fb_info(cfb); 1872 cyberpro_free_fb_info(cfb);
1873 1873
1874 /*
1875 * Ensure that the driver data is no longer
1876 * valid.
1877 */
1878 pci_set_drvdata(dev, NULL);
1879 if (cfb == int_cfb_info) 1874 if (cfb == int_cfb_info)
1880 int_cfb_info = NULL; 1875 int_cfb_info = NULL;
1881 1876