diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2009-01-27 01:02:41 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:48 -0400 |
commit | ac829d62eeb5440899f0f034a9f756c2296105a5 (patch) | |
tree | 5134acee21a7b931683e2f2c90ee282ccfbaac20 /drivers/media/video/tw9910.c | |
parent | 2c32cc0c1f54d62c7e9ab81d1c1a3aa5b9efd73d (diff) |
V4L/DVB (10616): tw9910: color format check is added on set_fmt
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/tw9910.c')
-rw-r--r-- | drivers/media/video/tw9910.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/media/video/tw9910.c b/drivers/media/video/tw9910.c index 52c0357faa5d..8dc3ec79a06f 100644 --- a/drivers/media/video/tw9910.c +++ b/drivers/media/video/tw9910.c | |||
@@ -645,6 +645,19 @@ static int tw9910_set_fmt(struct soc_camera_device *icd, __u32 pixfmt, | |||
645 | struct tw9910_priv *priv = container_of(icd, struct tw9910_priv, icd); | 645 | struct tw9910_priv *priv = container_of(icd, struct tw9910_priv, icd); |
646 | int ret = -EINVAL; | 646 | int ret = -EINVAL; |
647 | u8 val; | 647 | u8 val; |
648 | int i; | ||
649 | |||
650 | /* | ||
651 | * check color format | ||
652 | */ | ||
653 | for (i = 0 ; i < ARRAY_SIZE(tw9910_color_fmt) ; i++) { | ||
654 | if (pixfmt == tw9910_color_fmt[i].fourcc) { | ||
655 | ret = 0; | ||
656 | break; | ||
657 | } | ||
658 | } | ||
659 | if (ret < 0) | ||
660 | goto tw9910_set_fmt_error; | ||
648 | 661 | ||
649 | /* | 662 | /* |
650 | * select suitable norm | 663 | * select suitable norm |