diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-04-22 13:46:20 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:07:54 -0400 |
commit | 0c3ea9941c4957e4a9c229878bd13a39ac4d0e4b (patch) | |
tree | 144ebb7ad94e1cb6b18c86b263497ea906ff7927 /drivers/media/dvb/frontends/dvb-pll.c | |
parent | b6fd549e50e11d91057dc367fa8f9d1352b145be (diff) |
V4L/DVB (7427): dvb-pll: remove rf input module options
The ability to select RF input was a supported feature only available on
Philips TUV1236d and Philips FCV1236d.
This feature, along with support for the tuners that used it,
was moved into the tuner-simple module.
This can now be removed from dvb-pll.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/dvb-pll.c')
-rw-r--r-- | drivers/media/dvb/frontends/dvb-pll.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c index 72ef6bc5e3f9..a054894ff481 100644 --- a/drivers/media/dvb/frontends/dvb-pll.c +++ b/drivers/media/dvb/frontends/dvb-pll.c | |||
@@ -48,10 +48,6 @@ static int debug; | |||
48 | module_param(debug, int, 0644); | 48 | module_param(debug, int, 0644); |
49 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); | 49 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); |
50 | 50 | ||
51 | static unsigned int input[DVB_PLL_MAX] = { [ 0 ... (DVB_PLL_MAX-1) ] = 0 }; | ||
52 | module_param_array(input, int, NULL, 0644); | ||
53 | MODULE_PARM_DESC(input,"specify rf input choice, 0 for autoselect (default)"); | ||
54 | |||
55 | static unsigned int id[DVB_PLL_MAX] = | 51 | static unsigned int id[DVB_PLL_MAX] = |
56 | { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED }; | 52 | { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED }; |
57 | module_param_array(id, int, NULL, 0644); | 53 | module_param_array(id, int, NULL, 0644); |
@@ -609,20 +605,6 @@ struct dvb_frontend *dvb_pll_attach(struct dvb_frontend *fe, int pll_addr, | |||
609 | id[priv->nr] == pll_desc_id ? | 605 | id[priv->nr] == pll_desc_id ? |
610 | "insmod option" : "autodetected"); | 606 | "insmod option" : "autodetected"); |
611 | } | 607 | } |
612 | if ((debug) || (input[priv->nr] > 0)) { | ||
613 | printk("dvb-pll[%d]", priv->nr); | ||
614 | if (i2c != NULL) | ||
615 | printk(" %d-%04x", i2c_adapter_id(i2c), pll_addr); | ||
616 | printk(": tuner rf input will be "); | ||
617 | switch (input[priv->nr]) { | ||
618 | case 0: | ||
619 | printk("autoselected\n"); | ||
620 | break; | ||
621 | default: | ||
622 | printk("set to input %d (insmod option)\n", | ||
623 | input[priv->nr]); | ||
624 | } | ||
625 | } | ||
626 | 608 | ||
627 | return fe; | 609 | return fe; |
628 | } | 610 | } |