Commit 3ea35d5d authored by Dafna Hirschfeld's avatar Dafna Hirschfeld Committed by Mauro Carvalho Chehab

media: vimc: sen: remove unused kthread_sen field

The field kthread_sen in the vimc_sen_device is
not set and used. So remove the field and
the code that check if it is non NULL
Signed-off-by: default avatarDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Cc: <stable@vger.kernel.org>      # for v5.4 and up
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 58c93a54
...@@ -18,7 +18,6 @@ struct vimc_sen_device { ...@@ -18,7 +18,6 @@ struct vimc_sen_device {
struct vimc_ent_device ved; struct vimc_ent_device ved;
struct v4l2_subdev sd; struct v4l2_subdev sd;
struct tpg_data tpg; struct tpg_data tpg;
struct task_struct *kthread_sen;
u8 *frame; u8 *frame;
/* The active format */ /* The active format */
struct v4l2_mbus_framefmt mbus_format; struct v4l2_mbus_framefmt mbus_format;
...@@ -202,10 +201,6 @@ static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -202,10 +201,6 @@ static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable)
const struct vimc_pix_map *vpix; const struct vimc_pix_map *vpix;
unsigned int frame_size; unsigned int frame_size;
if (vsen->kthread_sen)
/* tpg is already executing */
return 0;
/* Calculate the frame size */ /* Calculate the frame size */
vpix = vimc_pix_map_by_code(vsen->mbus_format.code); vpix = vimc_pix_map_by_code(vsen->mbus_format.code);
frame_size = vsen->mbus_format.width * vpix->bpp * frame_size = vsen->mbus_format.width * vpix->bpp *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment