]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
V4L/DVB (4252): Remove duplicate 'tda9887' in info messages.
authorHans Verkuil <hverkuil@xs4all.nl>
Sun, 25 Jun 2006 14:02:02 +0000 (11:02 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Tue, 27 Jun 2006 03:17:34 +0000 (00:17 -0300)
Remove the duplicate '(tda9887)' in these messages:
tda9887 8-0043 (tda9887): tda988[5/6/7] found @ 0x43 (tuner)
The same string is already printed as the prefix in this line.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/tda9887.c

index b6ae969563b2ba9e3d6cefde6e51bcd21b7cbc43..b1ea6aa33166fa91b7d0d737ac001bc927af3823 100644 (file)
 */
 
 #define tda9887_info(fmt, arg...) do {\
-       printk(KERN_INFO "%s %d-%04x (tda9887): " fmt, t->i2c.name, \
+       printk(KERN_INFO "%s %d-%04x: " fmt, t->i2c.name, \
                        i2c_adapter_id(t->i2c.adapter), t->i2c.addr , ##arg); } while (0)
 #define tda9887_dbg(fmt, arg...) do {\
        if (tuner_debug) \
-               printk(KERN_INFO "%s %d-%04x (tda9887): " fmt, t->i2c.name, \
+               printk(KERN_INFO "%s %d-%04x: " fmt, t->i2c.name, \
                        i2c_adapter_id(t->i2c.adapter), t->i2c.addr , ##arg); } while (0)