Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37396
b: refs/heads/master
c: 8d90ee5
h: refs/heads/master
v: v3
  • Loading branch information
Oliver Endriss authored and Mauro Carvalho Chehab committed Sep 26, 2006
1 parent 30c1b29 commit fae1256
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d93f8860cc55504b376b38b95d22efeb3cc10edd
refs/heads/master: 8d90ee5e0e57b67e6e5c01cb14495fb69edccbbf
19 changes: 9 additions & 10 deletions trunk/drivers/media/dvb/ttpci/av7110.c
Original file line number Diff line number Diff line change
Expand Up @@ -2150,12 +2150,19 @@ static int frontend_init(struct av7110 *av7110)
break;

case 0x0001: // Hauppauge/TT Nexus-T premium rev1.X

// ALPS TDLB7
// try ALPS TDLB7 first, then Grundig 29504-401
av7110->fe = dvb_attach(sp8870_attach, &alps_tdlb7_config, &av7110->i2c_adap);
if (av7110->fe) {
av7110->fe->ops.tuner_ops.set_params = alps_tdlb7_tuner_set_params;
break;
}
/* fall-thru */

case 0x0008: // Hauppauge/TT DVB-T
// Grundig 29504-401
av7110->fe = dvb_attach(l64781_attach, &grundig_29504_401_config, &av7110->i2c_adap);
if (av7110->fe)
av7110->fe->ops.tuner_ops.set_params = grundig_29504_401_tuner_set_params;
break;

case 0x0002: // Hauppauge/TT DVB-C premium rev2.X
Expand Down Expand Up @@ -2190,14 +2197,6 @@ static int frontend_init(struct av7110 *av7110)
}
break;

case 0x0008: // Hauppauge/TT DVB-T

av7110->fe = dvb_attach(l64781_attach, &grundig_29504_401_config, &av7110->i2c_adap);
if (av7110->fe) {
av7110->fe->ops.tuner_ops.set_params = grundig_29504_401_tuner_set_params;
}
break;

case 0x000A: // Hauppauge/TT Nexus-CA rev1.X

av7110->fe = dvb_attach(stv0297_attach, &nexusca_stv0297_config, &av7110->i2c_adap);
Expand Down

0 comments on commit fae1256

Please sign in to comment.