aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tda9887.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2007-12-16 17:14:31 -0500
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 16:03:52 -0500
commitdaae58956bebeab6631ba078669970a27bdfbdbe (patch)
treec234c956b0853f12d85888392dc080532a337150 /drivers/media/video/tda9887.c
parent35e420357bd835d43c76d3ab5e35694be0b56f95 (diff)
V4L/DVB (6838): tda9887: remove references to struct tuner from printk macros
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tda9887.c')
-rw-r--r--drivers/media/video/tda9887.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c
index 8a95f097ba23..f265c702cde1 100644
--- a/drivers/media/video/tda9887.c
+++ b/drivers/media/video/tda9887.c
@@ -25,14 +25,14 @@ static int tda9887_debug;
25module_param_named(debug, tda9887_debug, int, 0644); 25module_param_named(debug, tda9887_debug, int, 0644);
26 26
27#define tda9887_info(fmt, arg...) do {\ 27#define tda9887_info(fmt, arg...) do {\
28 printk(KERN_INFO "%s %d-%04x: " fmt, priv->t->i2c->name, \ 28 printk(KERN_INFO "tda9887 %d-%04x: " fmt, \
29 i2c_adapter_id(priv->t->i2c->adapter), \ 29 i2c_adapter_id(priv->i2c_props.adap), \
30 priv->t->i2c->addr, ##arg); } while (0) 30 priv->i2c_props.addr, ##arg); } while (0)
31#define tda9887_dbg(fmt, arg...) do {\ 31#define tda9887_dbg(fmt, arg...) do {\
32 if (tda9887_debug) \ 32 if (tda9887_debug) \
33 printk(KERN_INFO "%s %d-%04x: " fmt, priv->t->i2c->name, \ 33 printk(KERN_INFO "tda9887 %d-%04x: " fmt, \
34 i2c_adapter_id(priv->t->i2c->adapter), \ 34 i2c_adapter_id(priv->i2c_props.adap), \
35 priv->t->i2c->addr, ##arg); } while (0) 35 priv->i2c_props.addr, ##arg); } while (0)
36 36
37struct tda9887_priv { 37struct tda9887_priv {
38 struct tuner_i2c_props i2c_props; 38 struct tuner_i2c_props i2c_props;