diff options
author | Michael Krufky <devnull@localhost> | 2005-08-20 14:31:39 +0000 |
---|---|---|
committer | Michael Krufky <devnull@localhost> | 2005-08-20 14:31:39 +0000 |
commit | cbb6629a8fdfb75a15b11d36dfc63b9df67f8c72 (patch) | |
tree | ed310c50022d965a919e6e53edddbd856384874c /linux/include/media/tuner.h | |
parent | dabe13290fb6b4a6bce2df2ebb8cd93df7a400e0 (diff) | |
download | mediapointer-dvb-s2-cbb6629a8fdfb75a15b11d36dfc63b9df67f8c72.tar.gz mediapointer-dvb-s2-cbb6629a8fdfb75a15b11d36dfc63b9df67f8c72.tar.bz2 |
* bttv-i2c.c:
- added i2c address for lgdt330x.
* tuner.h:
- i2c-core.c uses hexadecimal for the i2c address,
so we should stay consistent.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/include/media/tuner.h')
-rw-r--r-- | linux/include/media/tuner.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/include/media/tuner.h b/linux/include/media/tuner.h index 53695e8f3..e19ac7ec8 100644 --- a/linux/include/media/tuner.h +++ b/linux/include/media/tuner.h @@ -1,4 +1,4 @@ -/* $Id: tuner.h,v 1.48 2005/08/19 20:55:05 mchehab Exp $ +/* $Id: tuner.h,v 1.49 2005/08/20 14:31:39 mkrufky Exp $ * tuner.h - definition for different tuners @@ -210,14 +210,14 @@ extern int default_tuner_init(struct i2c_client *c); extern int tea5767_autodetection(struct i2c_client *c); #define tuner_warn(fmt, arg...) do {\ - printk(KERN_WARNING "%s %d-%04d: " fmt, t->i2c.driver->name, \ + printk(KERN_WARNING "%s %d-%04x: " fmt, t->i2c.driver->name, \ t->i2c.adapter->nr, t->i2c.addr, ## arg); } while (0) #define tuner_info(fmt, arg...) do {\ - printk(KERN_INFO "%s %d-%04d: " fmt, t->i2c.driver->name, \ + printk(KERN_INFO "%s %d-%04x: " fmt, t->i2c.driver->name, \ t->i2c.adapter->nr, t->i2c.addr, ## arg); } while (0) #define tuner_dbg(fmt, arg...) do {\ if (tuner_debug) \ - printk(KERN_DEBUG "%s %d-%04d: " fmt, t->i2c.driver->name, \ + printk(KERN_DEBUG "%s %d-%04x: " fmt, t->i2c.driver->name, \ t->i2c.adapter->nr, t->i2c.addr, ## arg); } while (0) #endif /* __KERNEL__ */ |