Skip to content

Commit

Permalink
V4L/DVB (4252): Remove duplicate 'tda9887' in info messages.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Jun 27, 2006
1 parent 0885ba1 commit 343f92c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/video/tda9887.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
*/

#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)


Expand Down

0 comments on commit 343f92c

Please sign in to comment.