aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/af9033.c
diff options
context:
space:
mode:
authorMichael Büsch <m@bues.ch>2012-04-02 11:18:36 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-04-09 13:50:45 -0400
commitffc501f654f566bf6a9e567f75c302d93f9e22e8 (patch)
treef35d659a5eab5c569101599b2facb70e1509fbab /drivers/media/dvb/frontends/af9033.c
parenteea977ed63c16888a87acd12958966638ac4fb3a (diff)
[media] af9035: Add fc0011 tuner support
This adds Fitipower fc0011 tuner support to the af9035 driver. Signed-off-by: Michael Buesch <m@bues.ch> Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/af9033.c')
-rw-r--r--drivers/media/dvb/frontends/af9033.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/af9033.c b/drivers/media/dvb/frontends/af9033.c
index 277255481607..9eedf93c6384 100644
--- a/drivers/media/dvb/frontends/af9033.c
+++ b/drivers/media/dvb/frontends/af9033.c
@@ -297,6 +297,10 @@ static int af9033_init(struct dvb_frontend *fe)
297 len = ARRAY_SIZE(tuner_init_tua9001); 297 len = ARRAY_SIZE(tuner_init_tua9001);
298 init = tuner_init_tua9001; 298 init = tuner_init_tua9001;
299 break; 299 break;
300 case AF9033_TUNER_FC0011:
301 len = ARRAY_SIZE(tuner_init_fc0011);
302 init = tuner_init_fc0011;
303 break;
300 default: 304 default:
301 pr_debug("%s: unsupported tuner ID=%d\n", __func__, 305 pr_debug("%s: unsupported tuner ID=%d\n", __func__,
302 state->cfg.tuner); 306 state->cfg.tuner);