mirror of https://gitee.com/openkylin/linux.git
media: camss: missing error code in msm_video_register()
This error path returns success but it should return -EINVAL.
Fixes: cba3819d1e
("media: camss: Format configuration per hardware version")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Robert Foss <robert.foss@linaro.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
b00481bdca
commit
9c67ed2ab2
|
@ -961,6 +961,7 @@ int msm_video_register(struct camss_video *video, struct v4l2_device *v4l2_dev,
|
||||||
video->nformats = ARRAY_SIZE(formats_rdi_8x96);
|
video->nformats = ARRAY_SIZE(formats_rdi_8x96);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
ret = -EINVAL;
|
||||||
goto error_video_register;
|
goto error_video_register;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue