Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76599
b: refs/heads/master
c: daae589
h: refs/heads/master
i:
  76597: 677724a
  76595: bdbbe79
  76591: 2060e27
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 94fc589 commit 841fefa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 35e420357bd835d43c76d3ab5e35694be0b56f95
refs/heads/master: daae58956bebeab6631ba078669970a27bdfbdbe
12 changes: 6 additions & 6 deletions trunk/drivers/media/video/tda9887.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ static int tda9887_debug;
module_param_named(debug, tda9887_debug, int, 0644);

#define tda9887_info(fmt, arg...) do {\
printk(KERN_INFO "%s %d-%04x: " fmt, priv->t->i2c->name, \
i2c_adapter_id(priv->t->i2c->adapter), \
priv->t->i2c->addr, ##arg); } while (0)
printk(KERN_INFO "tda9887 %d-%04x: " fmt, \
i2c_adapter_id(priv->i2c_props.adap), \
priv->i2c_props.addr, ##arg); } while (0)
#define tda9887_dbg(fmt, arg...) do {\
if (tda9887_debug) \
printk(KERN_INFO "%s %d-%04x: " fmt, priv->t->i2c->name, \
i2c_adapter_id(priv->t->i2c->adapter), \
priv->t->i2c->addr, ##arg); } while (0)
printk(KERN_INFO "tda9887 %d-%04x: " fmt, \
i2c_adapter_id(priv->i2c_props.adap), \
priv->i2c_props.addr, ##arg); } while (0)

struct tda9887_priv {
struct tuner_i2c_props i2c_props;
Expand Down

0 comments on commit 841fefa

Please sign in to comment.