mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
media: exynos4-is: remove redundant check on type
The check to see if type is V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE is redundant as this has been already checked at the start of the function and if it's not that value then -ENOSYS is returned. Hence the sprintf can be replaced by a simpler string copy. Detected by CoverityScan, CID#1309450 ("Logically dead code") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
8dd22b289c
commit
ffaec3b21a
@ -606,9 +606,7 @@ int fimc_isp_video_device_register(struct fimc_isp *isp,
|
||||
|
||||
vdev = &iv->ve.vdev;
|
||||
memset(vdev, 0, sizeof(*vdev));
|
||||
snprintf(vdev->name, sizeof(vdev->name), "fimc-is-isp.%s",
|
||||
type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE ?
|
||||
"capture" : "output");
|
||||
strscpy(vdev->name, "fimc-is-isp.capture", sizeof(vdev->name));
|
||||
vdev->queue = q;
|
||||
vdev->fops = &isp_video_fops;
|
||||
vdev->ioctl_ops = &isp_video_ioctl_ops;
|
||||
|
Loading…
Reference in New Issue
Block a user