aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorScott Jiang <scott.jiang.linux@gmail.com>2012-06-20 18:46:54 -0400
committerBob Liu <lliubbo@gmail.com>2012-07-24 01:39:51 -0400
commitc38670bc5d1be870717f694a5d6dc2961c37d979 (patch)
tree11671b41d534b074ac7a6c33bcae7e4e4a955152 /arch
parentac5bb8939c34251a7eb9de80f980ca797e681658 (diff)
bf561: add capabilities in adv7183_inputs
Add capabilities in adv7183_inputs to indicate that S_STD is supported. Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com> Signed-off-by: Bob Liu <lliubbo@gmail.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/blackfin/mach-bf561/boards/ezkit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf561/boards/ezkit.c b/arch/blackfin/mach-bf561/boards/ezkit.c
index 838978808a15..7c36777c6455 100644
--- a/arch/blackfin/mach-bf561/boards/ezkit.c
+++ b/arch/blackfin/mach-bf561/boards/ezkit.c
@@ -452,18 +452,21 @@ static struct v4l2_input adv7183_inputs[] = {
452 .name = "Composite", 452 .name = "Composite",
453 .type = V4L2_INPUT_TYPE_CAMERA, 453 .type = V4L2_INPUT_TYPE_CAMERA,
454 .std = V4L2_STD_ALL, 454 .std = V4L2_STD_ALL,
455 .capabilities = V4L2_IN_CAP_STD,
455 }, 456 },
456 { 457 {
457 .index = 1, 458 .index = 1,
458 .name = "S-Video", 459 .name = "S-Video",
459 .type = V4L2_INPUT_TYPE_CAMERA, 460 .type = V4L2_INPUT_TYPE_CAMERA,
460 .std = V4L2_STD_ALL, 461 .std = V4L2_STD_ALL,
462 .capabilities = V4L2_IN_CAP_STD,
461 }, 463 },
462 { 464 {
463 .index = 2, 465 .index = 2,
464 .name = "Component", 466 .name = "Component",
465 .type = V4L2_INPUT_TYPE_CAMERA, 467 .type = V4L2_INPUT_TYPE_CAMERA,
466 .std = V4L2_STD_ALL, 468 .std = V4L2_STD_ALL,
469 .capabilities = V4L2_IN_CAP_STD,
467 }, 470 },
468}; 471};
469 472