diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-04-22 13:41:53 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 12:42:26 -0400 |
commit | 2756665c28a7d2e25d92745195b5171866e12da9 (patch) | |
tree | 3624ed3ae3c118747684f86786fd138318fe903c /drivers/media/video/mt20xx.c | |
parent | 3c2a0865d06df23f755a7d36a1076965500e1228 (diff) |
V4L/DVB (7135): remove PREFIX from users of tuner_foo printk macros
Store a pointer to the device name in the name field of
struct tuner_i2c_props, so that we can remove the
printk macros defined in tuner-i2c.h
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/mt20xx.c')
-rw-r--r-- | drivers/media/video/mt20xx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/mt20xx.c b/drivers/media/video/mt20xx.c index 1fa89dbdff24..fbcb28233737 100644 --- a/drivers/media/video/mt20xx.c +++ b/drivers/media/video/mt20xx.c | |||
@@ -14,8 +14,6 @@ static int debug; | |||
14 | module_param(debug, int, 0644); | 14 | module_param(debug, int, 0644); |
15 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); | 15 | MODULE_PARM_DESC(debug, "enable verbose debug messages"); |
16 | 16 | ||
17 | #define PREFIX "mt20xx" | ||
18 | |||
19 | /* ---------------------------------------------------------------------- */ | 17 | /* ---------------------------------------------------------------------- */ |
20 | 18 | ||
21 | static unsigned int optimize_vco = 1; | 19 | static unsigned int optimize_vco = 1; |
@@ -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 | ||