mirror of
https://github.com/torvalds/linux.git
synced 2024-12-15 07:33:56 +00:00
V4L/DVB (6492): tuner: improve tuner_foo printk macros consistency
Alter the tuner_foo printk macros to indicate which module is generating the message. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
4942744f93
commit
241020d19e
@ -30,6 +30,8 @@
|
||||
|
||||
#define UNSET (-1U)
|
||||
|
||||
#define PREFIX "tuner "
|
||||
|
||||
/* standard i2c insmod options */
|
||||
static unsigned short normal_i2c[] = {
|
||||
#if defined(CONFIG_TUNER_TEA5761) || (defined(CONFIG_TUNER_TEA5761_MODULE) && defined(MODULE))
|
||||
|
@ -71,15 +71,15 @@ struct tuner {
|
||||
/* ------------------------------------------------------------------------ */
|
||||
|
||||
#define tuner_warn(fmt, arg...) do {\
|
||||
printk(KERN_WARNING "%s %d-%04x: " fmt, t->i2c->driver->driver.name, \
|
||||
printk(KERN_WARNING PREFIX "%d-%04x: " fmt, \
|
||||
i2c_adapter_id(t->i2c->adapter), t->i2c->addr , ##arg); } while (0)
|
||||
#define tuner_info(fmt, arg...) do {\
|
||||
printk(KERN_INFO "%s %d-%04x: " fmt, t->i2c->driver->driver.name, \
|
||||
printk(KERN_INFO PREFIX "%d-%04x: " fmt, \
|
||||
i2c_adapter_id(t->i2c->adapter), t->i2c->addr , ##arg); } while (0)
|
||||
#define tuner_dbg(fmt, arg...) do {\
|
||||
extern int tuner_debug; \
|
||||
if (tuner_debug) \
|
||||
printk(KERN_DEBUG "%s %d-%04x: " fmt, t->i2c->driver->driver.name, \
|
||||
printk(KERN_DEBUG PREFIX "%d-%04x: " fmt, \
|
||||
i2c_adapter_id(t->i2c->adapter), t->i2c->addr , ##arg); } while (0)
|
||||
|
||||
#endif /* __TUNER_DRIVER_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user