aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2006-04-07 02:24:54 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-25 00:57:49 -0400
commite142e7c4186821f03890ff223925cdc7fc963742 (patch)
tree3107a5e4ea9c7a7203824bd3d27b879ecc26d935 /drivers/media/video
parentda215d22d82d547c5312f61ac9881ad571e67eea (diff)
V4L/DVB (3736): Cx88 cleanup: move CX88_BOARD_PCHDTV_HD5500 to the end of the cards array
- new cards should always be added to the end of the list. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r--drivers/media/video/cx88/cx88-cards.c45
1 files changed, 22 insertions, 23 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c
index 55ea37dd85ba..689d210c90ac 100644
--- a/drivers/media/video/cx88/cx88-cards.c
+++ b/drivers/media/video/cx88/cx88-cards.c
@@ -601,28 +601,6 @@ struct cx88_board cx88_boards[] = {
601 }, 601 },
602 .dvb = 1, 602 .dvb = 1,
603 }, 603 },
604 [CX88_BOARD_PCHDTV_HD5500] = {
605 .name = "pcHDTV HD5500 HDTV",
606 .tuner_type = TUNER_LG_TDVS_H062F,
607 .radio_type = UNSET,
608 .tuner_addr = ADDR_UNSET,
609 .radio_addr = ADDR_UNSET,
610 .tda9887_conf = TDA9887_PRESENT,
611 .input = {{
612 .type = CX88_VMUX_TELEVISION,
613 .vmux = 0,
614 .gpio0 = 0x87fd,
615 },{
616 .type = CX88_VMUX_COMPOSITE1,
617 .vmux = 1,
618 .gpio0 = 0x87f9,
619 },{
620 .type = CX88_VMUX_SVIDEO,
621 .vmux = 2,
622 .gpio0 = 0x87f9,
623 }},
624 .dvb = 1,
625 },
626 [CX88_BOARD_HAUPPAUGE_ROSLYN] = { 604 [CX88_BOARD_HAUPPAUGE_ROSLYN] = {
627 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu> 605 // entry added by Kaustubh D. Bhalerao <bhalerao.1@osu.edu>
628 // GPIO values obtained from regspy, courtesy Sean Covel 606 // GPIO values obtained from regspy, courtesy Sean Covel
@@ -1115,7 +1093,28 @@ struct cx88_board cx88_boards[] = {
1115 }}, 1093 }},
1116 .dvb = 1, 1094 .dvb = 1,
1117 }, 1095 },
1118 1096 [CX88_BOARD_PCHDTV_HD5500] = {
1097 .name = "pcHDTV HD5500 HDTV",
1098 .tuner_type = TUNER_LG_TDVS_H062F,
1099 .radio_type = UNSET,
1100 .tuner_addr = ADDR_UNSET,
1101 .radio_addr = ADDR_UNSET,
1102 .tda9887_conf = TDA9887_PRESENT,
1103 .input = {{
1104 .type = CX88_VMUX_TELEVISION,
1105 .vmux = 0,
1106 .gpio0 = 0x87fd,
1107 },{
1108 .type = CX88_VMUX_COMPOSITE1,
1109 .vmux = 1,
1110 .gpio0 = 0x87f9,
1111 },{
1112 .type = CX88_VMUX_SVIDEO,
1113 .vmux = 2,
1114 .gpio0 = 0x87f9,
1115 }},
1116 .dvb = 1,
1117 },
1119}; 1118};
1120const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); 1119const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards);
1121 1120