aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Söderlund <[email protected]>2015-12-25 15:25:16 -0200
committerMauro Carvalho Chehab <[email protected]>2016-02-01 07:37:46 -0200
commitb20b51f090f81418b4f74232a0f414b886e8ba8c (patch)
tree52191b1586096fd04829ab3e5eda72511ea87697
parentfaccb05ca8fb56c140fdeb70ae599e559c01c815 (diff)
[media] vim2m: return error if driver registration fails
Don't hide the error code. Signed-off-by: Niklas Söderlund <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r--drivers/media/platform/vim2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/vim2m.c b/drivers/media/platform/vim2m.c
index 418113c99801..c4b5fab83666 100644
--- a/drivers/media/platform/vim2m.c
+++ b/drivers/media/platform/vim2m.c
@@ -1074,7 +1074,7 @@ static int __init vim2m_init(void)
if (ret)
platform_device_unregister(&vim2m_pdev);
- return 0;
+ return ret;
}
module_init(vim2m_init);