diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-09 16:09:51 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-03-09 16:09:51 -0300 |
commit | 8241247ab626396c193e668f8529a21443742e59 (patch) | |
tree | 48b21f55807dfcfea2390e6be3c074cd7f4e4c52 /linux/drivers/media/video | |
parent | 22ae47d27d089e031f13d321928f2940c2d1bdfc (diff) | |
download | mediapointer-dvb-s2-8241247ab626396c193e668f8529a21443742e59.tar.gz mediapointer-dvb-s2-8241247ab626396c193e668f8529a21443742e59.tar.bz2 |
Correct gpio values for Aver 303 Studio in v4l-dvb tree
From: Marcin Rudowski <mar_rud@poczta.onet.pl>
Old values generally works in A2 mono, but new ones allows:
- detect and use Nicam stereo
- mute in tv
- use radio FM
Signed-off-by: Marcin Rudowski <mar_rud@poczta.onet.pl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index c9c76003e..aeea8e243 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -186,17 +186,18 @@ struct cx88_board cx88_boards[] = { .input = {{ .type = CX88_VMUX_TELEVISION, .vmux = 0, - .gpio1 = 0x309f, + .gpio1 = 0xe09f, },{ .type = CX88_VMUX_COMPOSITE1, .vmux = 1, - .gpio1 = 0x305f, + .gpio1 = 0xe05f, },{ .type = CX88_VMUX_SVIDEO, .vmux = 2, - .gpio1 = 0x305f, + .gpio1 = 0xe05f, }}, .radio = { + .gpio1 = 0xe0df, .type = CX88_RADIO, }, }, |