summaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/dss/hdmi.c
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2012-02-23 14:32:37 +0100
committerTomi Valkeinen <tomi.valkeinen@ti.com>2012-05-11 13:44:51 +0200
commit04c742c3dccac296fdc52b464bd0491ffe88de23 (patch)
tree8e2cfc3dbb4965118c4d67639d1910db86286d73 /drivers/video/omap2/dss/hdmi.c
parentOMAPDSS: clean up the omapdss platform data mess (diff)
downloadlinux-04c742c3dccac296fdc52b464bd0491ffe88de23.tar.xz
linux-04c742c3dccac296fdc52b464bd0491ffe88de23.zip
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/hdmi.c')
-rw-r--r--drivers/video/omap2/dss/hdmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/hdmi.c b/drivers/video/omap2/dss/hdmi.c
index 043eac676786..1d73ee7a5367 100644
--- a/drivers/video/omap2/dss/hdmi.c
+++ b/drivers/video/omap2/dss/hdmi.c
@@ -916,5 +916,5 @@ int hdmi_init_platform_driver(void)
void hdmi_uninit_platform_driver(void)
{
- return platform_driver_unregister(&omapdss_hdmihw_driver);
+ platform_driver_unregister(&omapdss_hdmihw_driver);
}