diff options
author | Antti Palosaari <crope@iki.fi> | 2009-09-15 20:37:20 +0300 |
---|---|---|
committer | Antti Palosaari <crope@iki.fi> | 2009-09-15 20:37:20 +0300 |
commit | d891cb0f7c2697f187df5301547d38d791cce2b0 (patch) | |
tree | c48a0f7aa074aae6eea5fd0305a98cf82c50eaac /linux/drivers/media | |
parent | 75bdd4882db874690382f633b28f5b3f7d5ff54c (diff) | |
download | mediapointer-dvb-s2-d891cb0f7c2697f187df5301547d38d791cce2b0.tar.gz mediapointer-dvb-s2-d891cb0f7c2697f187df5301547d38d791cce2b0.tar.bz2 |
tuner-simple: add Philips CU1216L
From: Antti Palosaari <crope@iki.fi>
add Philips CU1216L NIM
Priority: normal
Signed-off-by: Antti Palosaari <crope@iki.fi>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/common/tuners/tuner-types.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/linux/drivers/media/common/tuners/tuner-types.c b/linux/drivers/media/common/tuners/tuner-types.c index c4bbb460a..a5a36fee3 100644 --- a/linux/drivers/media/common/tuners/tuner-types.c +++ b/linux/drivers/media/common/tuners/tuner-types.c @@ -1321,6 +1321,23 @@ static struct tuner_params tuner_partsnic_pti_5nf05_params[] = { }, }; +/* --------- TUNER_PHILIPS_CU1216L - DVB-C NIM ------------------------- */ + +static struct tuner_range tuner_cu1216l_ranges[] = { + { 16 * 160.25 /*MHz*/, 0xce, 0x01 }, + { 16 * 444.25 /*MHz*/, 0xce, 0x02 }, + { 16 * 999.99 , 0xce, 0x04 }, +}; + +static struct tuner_params tuner_philips_cu1216l_params[] = { + { + .type = TUNER_PARAM_TYPE_DIGITAL, + .ranges = tuner_cu1216l_ranges, + .count = ARRAY_SIZE(tuner_cu1216l_ranges), + .iffreq = 16 * 36.125, /*MHz*/ + }, +}; + /* --------------------------------------------------------------------- */ struct tunertype tuners[] = { @@ -1779,6 +1796,12 @@ struct tunertype tuners[] = { .params = tuner_partsnic_pti_5nf05_params, .count = ARRAY_SIZE(tuner_partsnic_pti_5nf05_params), }, + [TUNER_PHILIPS_CU1216L] = { + .name = "Philips CU1216L", + .params = tuner_philips_cu1216l_params, + .count = ARRAY_SIZE(tuner_philips_cu1216l_params), + .stepsize = 62500, + }, }; EXPORT_SYMBOL(tuners); |