1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
diff -Naurp bttv-0.9.4/bttv-cards.c bttv-0.9.4-old/bttv-cards.c
--- bttv-0.9.4/bttv-cards.c Wed Jan 8 11:39:49 2003
+++ bttv-0.9.4-old/bttv-cards.c Sun Jan 19 01:18:28 2003
@@ -206,6 +206,7 @@ static struct CARD {
{ 0x00790e11, BTTV_WINDVR, "Canopus WinDVR PCI" },
{ 0xa0fca1a0, BTTV_ZOLTRIX, "Face to Face Tvmax" },
{ 0xa0fca04f, BTTV_MAGICTVIEW063, "Guillemot Maxi TV Video 3" },
+ { 0x01010071, BTTV_NEBULA_DIGITV, "Nebula Electronics DigiTV" },
{ 0, -1, NULL }
};
@@ -1583,6 +1584,18 @@ struct tvcard bttv_tvcards[] = {
.no_tda7432 = 1,
.muxsel = { 2, 0, 1},
.pll = PLL_28,
+},{
+ .name = "Nebula Electronics DigiTV",
+ .video_inputs = 0,
+ .audio_inputs = 0,
+ .svhs = -1,
+ .muxsel = { 2, 3, 1, 0},
+ .needs_tvaudio = 0,
+ .no_msp34xx = 1,
+ .no_tda9875 = 1,
+ .no_tda7432 = 1,
+ .pll = PLL_28,
+ .tuner_type = -1,
}};
const int bttv_num_tvcards = (sizeof(bttv_tvcards)/sizeof(struct tvcard));
diff -Naurp bttv-0.9.4/bttv.h bttv-0.9.4-old/bttv.h
--- bttv-0.9.4/bttv.h Wed Jan 8 11:39:49 2003
+++ bttv-0.9.4-old/bttv.h Sun Jan 19 11:46:59 2003
@@ -108,6 +108,7 @@
#define BTTV_PINNACLESAT 0x5e
#define BTTV_FORMAC_PROTV 0x5f
#define BTTV_EURESYS_PICOLO 0x61
+#define BTTV_NEBULA_DIGITV 0x62
/* i2c address list */
#define I2C_TSA5522 0xc2
|