media: omap4iss: return error code when omap4iss_get() failed
[ Upstream commit8938c48fa2] If omap4iss_get() failed, it need return error code in iss_probe(). Fixes:59f0ad8076("[media] v4l: omap4iss: Add support for OMAP4...") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
3ad6a6288c
commit
38f9456ef5
1 changed files with 3 additions and 1 deletions
|
|
@ -1236,8 +1236,10 @@ static int iss_probe(struct platform_device *pdev)
|
|||
if (ret < 0)
|
||||
goto error;
|
||||
|
||||
if (!omap4iss_get(iss))
|
||||
if (!omap4iss_get(iss)) {
|
||||
ret = -EINVAL;
|
||||
goto error;
|
||||
}
|
||||
|
||||
ret = iss_reset(iss);
|
||||
if (ret < 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue