[media] tvp5150: identify it as a MEDIA_ENT_F_ATV_DECODER
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 27 Jan 2016 17:09:15 +0000 (15:09 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 1 Feb 2016 09:26:03 +0000 (07:26 -0200)
The tvp5150 is an analog TV decoder. Identify as such at
the media graph, or otherwise devices using it would fail.

That avoids the following warning:
[ 1546.669139] usb 2-3.3: Entity type for entity tvp5150 5-005c was not initialized!

Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/i2c/tvp5150.c

index 20428f052506ebc0c836ba6127b840a01dcb8cd6..19b52736b24e97236abf849bc1d1650410594d90 100644 (file)
@@ -1319,6 +1319,9 @@ static int tvp5150_probe(struct i2c_client *c,
        core->pads[DEMOD_PAD_IF_INPUT].flags = MEDIA_PAD_FL_SINK;
        core->pads[DEMOD_PAD_VID_OUT].flags = MEDIA_PAD_FL_SOURCE;
        core->pads[DEMOD_PAD_VBI_OUT].flags = MEDIA_PAD_FL_SOURCE;
+
+       sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
+
        res = media_entity_pads_init(&sd->entity, DEMOD_NUM_PADS, core->pads);
        if (res < 0)
                return res;
This page took 0.025791 seconds and 5 git commands to generate.