diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2018-06-18 11:10:28 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-07-25 14:04:00 +0200 |
commit | 173bf6e51ba5845fbfcbdd281b837870fb033bc2 (patch) | |
tree | b5b40c0c210930399cf7b2cbdacf804a255e0342 /drivers/media/i2c/mt9m032.c | |
parent | media: adv7180/tvp514x/tvp7002: fix entity function (diff) | |
download | linux-173bf6e51ba5845fbfcbdd281b837870fb033bc2.tar.xz linux-173bf6e51ba5845fbfcbdd281b837870fb033bc2.zip |
media: media/i2c: add missing entity functions
Several drivers in media/i2c do not set the entity function.
Correct this.
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/i2c/mt9m032.c')
-rw-r--r-- | drivers/media/i2c/mt9m032.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/i2c/mt9m032.c b/drivers/media/i2c/mt9m032.c index 6a9e068462fd..b385f2b632ad 100644 --- a/drivers/media/i2c/mt9m032.c +++ b/drivers/media/i2c/mt9m032.c @@ -793,6 +793,7 @@ static int mt9m032_probe(struct i2c_client *client, v4l2_ctrl_cluster(2, &sensor->hflip); sensor->subdev.ctrl_handler = &sensor->ctrls; + sensor->subdev.entity.function = MEDIA_ENT_F_CAM_SENSOR; sensor->pad.flags = MEDIA_PAD_FL_SOURCE; ret = media_entity_pads_init(&sensor->subdev.entity, 1, &sensor->pad); if (ret < 0) |