Skip to content

Commit

Permalink
bf609: adv7343: add S-Video and Component output support
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
  • Loading branch information
Scott Jiang authored and Steven Miao committed Sep 13, 2013
1 parent 4940c53 commit e578609
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion arch/blackfin/mach-bf609/boards/ezkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1118,11 +1118,32 @@ static struct v4l2_output adv7343_outputs[] = {
.std = V4L2_STD_ALL,
.capabilities = V4L2_OUT_CAP_STD,
},
{
.index = 1,
.name = "S-Video",
.type = V4L2_OUTPUT_TYPE_ANALOG,
.std = V4L2_STD_ALL,
.capabilities = V4L2_OUT_CAP_STD,
},
{
.index = 2,
.name = "Component",
.type = V4L2_OUTPUT_TYPE_ANALOG,
.std = V4L2_STD_ALL,
.capabilities = V4L2_OUT_CAP_STD,
},

};

static struct disp_route adv7343_routes[] = {
{
.output = 0,
.output = ADV7343_COMPOSITE_ID,
},
{
.output = ADV7343_SVIDEO_ID,
},
{
.output = ADV7343_COMPONENT_ID,
},
};

Expand Down

0 comments on commit e578609

Please sign in to comment.