summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/marvell/mmp-driver.c
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil-cisco@xs4all.nl>2023-01-26 13:33:10 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2023-02-08 08:31:49 +0100
commit5a1a39a8ac30c7f116d427f7271927d976e4723e (patch)
treedc301ab109f7e05834bcb9a851810e942aae686c /drivers/media/platform/marvell/mmp-driver.c
parente670d7e3c53d0345c7acfa5b9a2b1c33537a0dad (diff)
downloadlinux-stable-5a1a39a8ac30c7f116d427f7271927d976e4723e.tar.gz
linux-stable-5a1a39a8ac30c7f116d427f7271927d976e4723e.tar.bz2
linux-stable-5a1a39a8ac30c7f116d427f7271927d976e4723e.zip
media: marvell: change return to goto for proper unwind
The probe function used 'goto out' everywhere, except in one place where it returned an error. That too should be a 'goto out'. This fixes a smatch warning: mmp-driver.c:257 mmpcam_probe() warn: missing unwind goto? Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media/platform/marvell/mmp-driver.c')
-rw-r--r--drivers/media/platform/marvell/mmp-driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/marvell/mmp-driver.c b/drivers/media/platform/marvell/mmp-driver.c
index df16899ab1cb..ef22bf8f276c 100644
--- a/drivers/media/platform/marvell/mmp-driver.c
+++ b/drivers/media/platform/marvell/mmp-driver.c
@@ -254,7 +254,7 @@ static int mmpcam_probe(struct platform_device *pdev)
*/
ret = mccic_register(mcam);
if (ret)
- return ret;
+ goto out;
/*
* Add OF clock provider.