aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/dss/dispc.c
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2012-02-23 08:32:37 -0500
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-05-11 07:44:51 -0400
commit04c742c3dccac296fdc52b464bd0491ffe88de23 (patch)
tree8e2cfc3dbb4965118c4d67639d1910db86286d73 /drivers/video/omap2/dss/dispc.c
parent00928eaf52007ee4e1fb7dc860bc02a56c125bb4 (diff)
OMAPDSS: remove return from platform_driver_unreg
For unknown reasons we seem to have a return in each of the omapdss's uninit functions, which is a void function. Remove the returns. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dispc.c')
-rw-r--r--drivers/video/omap2/dss/dispc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/dispc.c b/drivers/video/omap2/dss/dispc.c
index 2c43119b5ade..4623bd97a1af 100644
--- a/drivers/video/omap2/dss/dispc.c
+++ b/drivers/video/omap2/dss/dispc.c
@@ -3611,5 +3611,5 @@ int dispc_init_platform_driver(void)
3611 3611
3612void dispc_uninit_platform_driver(void) 3612void dispc_uninit_platform_driver(void)
3613{ 3613{
3614 return platform_driver_unregister(&omap_dispchw_driver); 3614 platform_driver_unregister(&omap_dispchw_driver);
3615} 3615}