media: platform/sh_veu.c: remove redundant NULL pointer checks

Function `sh_veu_find_fmt` returns an address that is an addition of a
base pointer `sh_veu_fmt` and an offset. The base pointer refers to a
global variable of which address cannot be NULL. Therefore, this commit
removes the NULL pointer checks on the return values of function
`sh_veu_find_fmt`.

Signed-off-by: Shaobo He <shaobo@cs.utah.edu>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
Shaobo He 2019-02-28 17:54:06 -05:00 коммит произвёл Mauro Carvalho Chehab
Родитель dea37a9726
Коммит 2c2a8dc32c
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -493,9 +493,6 @@ static int sh_veu_try_fmt_vid_cap(struct file *file, void *priv,
const struct sh_veu_format *fmt;
fmt = sh_veu_find_fmt(f);
if (!fmt)
/* wrong buffer type */
return -EINVAL;
return sh_veu_try_fmt(f, fmt);
}
@ -506,9 +503,6 @@ static int sh_veu_try_fmt_vid_out(struct file *file, void *priv,
const struct sh_veu_format *fmt;
fmt = sh_veu_find_fmt(f);
if (!fmt)
/* wrong buffer type */
return -EINVAL;
return sh_veu_try_fmt(f, fmt);
}