diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2006-08-07 07:04:26 +0200 |
---|---|---|
committer | Oliver Endriss <o.endriss@gmx.de> | 2006-08-07 07:04:26 +0200 |
commit | 41480cd76fdedd7a28a0e90cc602efd596a81eb9 (patch) | |
tree | 3ed59cfabed3445b436d86960e9188036496af73 /linux/drivers/media | |
parent | 31f22c060bcca02a2d814be341d9169b9d00bd8d (diff) | |
download | mediapointer-dvb-s2-41480cd76fdedd7a28a0e90cc602efd596a81eb9.tar.gz mediapointer-dvb-s2-41480cd76fdedd7a28a0e90cc602efd596a81eb9.tar.bz2 |
[av7110] Support Grundig DVB-T tuner for sub-system 13c2:0001
From: Oliver Endriss <o.endriss@gmx.de>
Some DVB-T cards with Grundig 29504-401 tuner use subsystem id 13c2:0001
(reported by Stuart Butterfield).
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/av7110.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/linux/drivers/media/dvb/ttpci/av7110.c b/linux/drivers/media/dvb/ttpci/av7110.c index b08c54e79..7de01222a 100644 --- a/linux/drivers/media/dvb/ttpci/av7110.c +++ b/linux/drivers/media/dvb/ttpci/av7110.c @@ -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 @@ -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); |