summaryrefslogtreecommitdiff
path: root/drivers/media/usb/au0828/au0828-video.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-03-02 09:48:36 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-03-03 06:18:17 -0300
commitbddc418787cccb2ba92b5e601d1d9b04f4668946 (patch)
tree1087174d917a47541b02c56d4a1a966c9e6d3a6d /drivers/media/usb/au0828/au0828-video.c
parent078600f514a12fd763ac84c86af68ef5b5267563 (diff)
[media] au0828: use standard demod pads struct
As we want au0828 to use the core function to create the MC graphs, use enum demod_pad_index instead of enum au8522_media_pads. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/usb/au0828/au0828-video.c')
-rw-r--r--drivers/media/usb/au0828/au0828-video.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/usb/au0828/au0828-video.c b/drivers/media/usb/au0828/au0828-video.c
index 1958de192608..b82deda02643 100644
--- a/drivers/media/usb/au0828/au0828-video.c
+++ b/drivers/media/usb/au0828/au0828-video.c
@@ -686,16 +686,16 @@ static int au0828_create_media_graph(struct au0828_dev *dev)
if (tuner) {
dev->tuner = tuner;
ret = media_create_pad_link(tuner, TUNER_PAD_OUTPUT,
- decoder, AU8522_PAD_INPUT, 0);
+ decoder, DEMOD_PAD_IF_INPUT, 0);
if (ret)
return ret;
}
- ret = media_create_pad_link(decoder, AU8522_PAD_VID_OUT,
+ ret = media_create_pad_link(decoder, DEMOD_PAD_VID_OUT,
&dev->vdev.entity, 0,
MEDIA_LNK_FL_ENABLED);
if (ret)
return ret;
- ret = media_create_pad_link(decoder, AU8522_PAD_VBI_OUT,
+ ret = media_create_pad_link(decoder, DEMOD_PAD_VBI_OUT,
&dev->vbi_dev.entity, 0,
MEDIA_LNK_FL_ENABLED);
if (ret)
@@ -723,7 +723,7 @@ static int au0828_create_media_graph(struct au0828_dev *dev)
case AU0828_VMUX_SVIDEO:
/* FIXME: fix the decoder PAD */
ret = media_create_pad_link(ent, 0, decoder,
- AU8522_PAD_INPUT, 0);
+ DEMOD_PAD_IF_INPUT, 0);
if (ret)
return ret;
break;