aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/mt20xx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/mt20xx.c')
-rw-r--r--drivers/media/video/mt20xx.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/media/video/mt20xx.c b/drivers/media/video/mt20xx.c
index 74fd6a01d4c4..fbcb28233737 100644
--- a/drivers/media/video/mt20xx.c
+++ b/drivers/media/video/mt20xx.c
@@ -10,12 +10,10 @@
10#include "tuner-i2c.h" 10#include "tuner-i2c.h"
11#include "mt20xx.h" 11#include "mt20xx.h"
12 12
13static int debug = 0; 13static int debug;
14module_param(debug, int, 0644); 14module_param(debug, int, 0644);
15MODULE_PARM_DESC(debug, "enable verbose debug messages"); 15MODULE_PARM_DESC(debug, "enable verbose debug messages");
16 16
17#define PREFIX "mt20xx"
18
19/* ---------------------------------------------------------------------- */ 17/* ---------------------------------------------------------------------- */
20 18
21static unsigned int optimize_vco = 1; 19static unsigned int optimize_vco = 1;
@@ -24,7 +22,7 @@ module_param(optimize_vco, int, 0644);
24static unsigned int tv_antenna = 1; 22static unsigned int tv_antenna = 1;
25module_param(tv_antenna, int, 0644); 23module_param(tv_antenna, int, 0644);
26 24
27static unsigned int radio_antenna = 0; 25static unsigned int radio_antenna;
28module_param(radio_antenna, int, 0644); 26module_param(radio_antenna, int, 0644);
29 27
30/* ---------------------------------------------------------------------- */ 28/* ---------------------------------------------------------------------- */
@@ -611,6 +609,7 @@ struct dvb_frontend *microtune_attach(struct dvb_frontend *fe,
611 609
612 priv->i2c_props.addr = i2c_addr; 610 priv->i2c_props.addr = i2c_addr;
613 priv->i2c_props.adap = i2c_adap; 611 priv->i2c_props.adap = i2c_adap;
612 priv->i2c_props.name = "mt20xx";
614 613
615 //priv->radio_if2 = 10700 * 1000; /* 10.7MHz - FM radio */ 614 //priv->radio_if2 = 10700 * 1000; /* 10.7MHz - FM radio */
616 615