diff options
author | Michael Krufky <devnull@localhost> | 2005-08-04 03:37:22 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-08-04 03:37:22 +0000 |
commit | 8e6af9233c75c6021c86d0a7e519ed428fdea258 (patch) | |
tree | 054af393baca482f75914fc3ec3afd1593e1efce /linux/drivers | |
parent | 19e94deec5cdec9bf6e215e773221f85a70c49dd (diff) | |
download | mediapointer-dvb-s2-8e6af9233c75c6021c86d0a7e519ed428fdea258.tar.gz mediapointer-dvb-s2-8e6af9233c75c6021c86d0a7e519ed428fdea258.tar.bz2 |
- Corrected GPIO values based on regspy for the following cx88 cards:
card=28 DViCO FusionHDTV3 Gold-T
card=31 DViCO FusionHDTV5 Gold
No noticeable change in behavior.
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 36d421d9f..93c4b2ebf 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-cards.c,v 1.90 2005/07/28 02:47:42 mkrufky Exp $ + * $Id: cx88-cards.c,v 1.91 2005/08/04 03:37:22 mkrufky Exp $ * * device driver for Conexant 2388x based TV cards * card-specific stuff. @@ -713,19 +713,18 @@ struct cx88_board cx88_boards[] = { .radio_type = UNSET, .tuner_addr = ADDR_UNSET, .radio_addr = ADDR_UNSET, - /* See DViCO FusionHDTV 3 Gold-Q for GPIO documentation. */ .input = {{ .type = CX88_VMUX_TELEVISION, .vmux = 0, - .gpio0 = 0x0f0d, + .gpio0 = 0x97ed, },{ .type = CX88_VMUX_COMPOSITE1, .vmux = 1, - .gpio0 = 0x0f00, + .gpio0 = 0x97e0, },{ .type = CX88_VMUX_SVIDEO, .vmux = 2, - .gpio0 = 0x0f00, + .gpio0 = 0x97e0, }}, .dvb = 1, }, @@ -763,19 +762,18 @@ struct cx88_board cx88_boards[] = { .radio_type = UNSET, .tuner_addr = ADDR_UNSET, .radio_addr = ADDR_UNSET, - /* See DViCO FusionHDTV 3 Gold-Q for GPIO documentation. */ .input = {{ .type = CX88_VMUX_TELEVISION, .vmux = 0, - .gpio0 = 0x0f0d, + .gpio0 = 0x87fd, },{ .type = CX88_VMUX_COMPOSITE1, .vmux = 1, - .gpio0 = 0x0f00, + .gpio0 = 0x87f0, },{ .type = CX88_VMUX_SVIDEO, .vmux = 2, - .gpio0 = 0x0f00, + .gpio0 = 0x87f0, }}, #if 0 .dvb = 1, |