diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-02-23 15:32:37 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-05-11 14:44:51 +0300 |
commit | 04c742c3dccac296fdc52b464bd0491ffe88de23 (patch) | |
tree | 8e2cfc3dbb4965118c4d67639d1910db86286d73 /drivers/video/omap2/dss/rfbi.c | |
parent | 00928eaf52007ee4e1fb7dc860bc02a56c125bb4 (diff) | |
download | linux-04c742c3dccac296fdc52b464bd0491ffe88de23.tar.bz2 |
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/rfbi.c')
-rw-r--r-- | drivers/video/omap2/dss/rfbi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/rfbi.c b/drivers/video/omap2/dss/rfbi.c index feadfab27ec2..31c992662457 100644 --- a/drivers/video/omap2/dss/rfbi.c +++ b/drivers/video/omap2/dss/rfbi.c @@ -1039,5 +1039,5 @@ int rfbi_init_platform_driver(void) void rfbi_uninit_platform_driver(void) { - return platform_driver_unregister(&omap_rfbihw_driver); + platform_driver_unregister(&omap_rfbihw_driver); } |