aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/dvb-pll.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-04-22 13:46:20 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:54 -0400
commit0c3ea9941c4957e4a9c229878bd13a39ac4d0e4b (patch)
tree144ebb7ad94e1cb6b18c86b263497ea906ff7927 /drivers/media/dvb/frontends/dvb-pll.c
parentb6fd549e50e11d91057dc367fa8f9d1352b145be (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.c18
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;
48module_param(debug, int, 0644); 48module_param(debug, int, 0644);
49MODULE_PARM_DESC(debug, "enable verbose debug messages"); 49MODULE_PARM_DESC(debug, "enable verbose debug messages");
50 50
51static unsigned int input[DVB_PLL_MAX] = { [ 0 ... (DVB_PLL_MAX-1) ] = 0 };
52module_param_array(input, int, NULL, 0644);
53MODULE_PARM_DESC(input,"specify rf input choice, 0 for autoselect (default)");
54
55static unsigned int id[DVB_PLL_MAX] = 51static unsigned int id[DVB_PLL_MAX] =
56 { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED }; 52 { [ 0 ... (DVB_PLL_MAX-1) ] = DVB_PLL_UNDEFINED };
57module_param_array(id, int, NULL, 0644); 53module_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}