diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-06-24 21:56:07 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-26 07:44:40 -0400 |
commit | e21d2170f36602ae2708597aabfbdf54c6144d3e (patch) | |
tree | f65adf5993f5d9b5cc36ea7a7c60a7fd510b934a /drivers/video/bfin-lq035q1-fb.c | |
parent | 12b23d5ffafcc27291f518608367ab4a7a0dd026 (diff) |
video: remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release
or on probe failure, since commit 0998d0631001288a5974afc0b2a5f568bcdecb4d
(device-core: Ensure drvdata = NULL when no driver is bound).
Thus, it is not needed to manually clear the device driver data to NULL.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/bfin-lq035q1-fb.c')
-rw-r--r-- | drivers/video/bfin-lq035q1-fb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/video/bfin-lq035q1-fb.c b/drivers/video/bfin-lq035q1-fb.c index 29d8c0443a1f..be65baec7889 100644 --- a/drivers/video/bfin-lq035q1-fb.c +++ b/drivers/video/bfin-lq035q1-fb.c | |||
@@ -759,7 +759,6 @@ static int bfin_lq035q1_probe(struct platform_device *pdev) | |||
759 | out2: | 759 | out2: |
760 | free_dma(CH_PPI); | 760 | free_dma(CH_PPI); |
761 | out1: | 761 | out1: |
762 | platform_set_drvdata(pdev, NULL); | ||
763 | 762 | ||
764 | return ret; | 763 | return ret; |
765 | } | 764 | } |
@@ -788,7 +787,6 @@ static int bfin_lq035q1_remove(struct platform_device *pdev) | |||
788 | bfin_lq035q1_free_ports(info->disp_info->ppi_mode == | 787 | bfin_lq035q1_free_ports(info->disp_info->ppi_mode == |
789 | USE_RGB565_16_BIT_PPI); | 788 | USE_RGB565_16_BIT_PPI); |
790 | 789 | ||
791 | platform_set_drvdata(pdev, NULL); | ||
792 | framebuffer_release(fbinfo); | 790 | framebuffer_release(fbinfo); |
793 | 791 | ||
794 | dev_info(&pdev->dev, "unregistered LCD driver\n"); | 792 | dev_info(&pdev->dev, "unregistered LCD driver\n"); |