Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 241020d1 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab
Browse files

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: default avatarMichael Krufky <mkrufky@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 4942744f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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))
+3 −3
Original line number Diff line number Diff line
@@ -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__ */