diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-17 18:46:14 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-17 18:46:14 -0300 |
commit | acc7837ba9c6b89823348b699aae4e995cdb45fc (patch) | |
tree | 2c611ab2ce69285c4481989d8c292458bcdae2cc /linux/drivers/media | |
parent | 643b5c72a34fe41b240907f12bfe9586254d65f5 (diff) | |
download | mediapointer-dvb-s2-acc7837ba9c6b89823348b699aae4e995cdb45fc.tar.gz mediapointer-dvb-s2-acc7837ba9c6b89823348b699aae4e995cdb45fc.tar.bz2 |
em28xx-core: fix some debug printk's that wrongly received KERN_INFO.
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Those printk's were adding more info to a line that were already being
printed.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-core.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-core.c b/linux/drivers/media/video/em28xx/em28xx-core.c index f3ff4c4f3..cac874267 100644 --- a/linux/drivers/media/video/em28xx/em28xx-core.c +++ b/linux/drivers/media/video/em28xx/em28xx-core.c @@ -80,9 +80,9 @@ int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg, if (reg_debug) { printk(ret < 0 ? " failed!\n" : "%02x values: ", ret); for (byte = 0; byte < len; byte++) - printk(KERN_INFO " %02x", (unsigned char)buf[byte]); + printk(" %02x", (unsigned char)buf[byte]); - printk(KERN_INFO "\n"); + printk("\n"); } return ret; @@ -143,8 +143,8 @@ int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf, if (reg_debug) { int i; for (i = 0; i < len; ++i) - printk(KERN_INFO " %02x", (unsigned char)buf[i]); - printk(KERN_INFO "\n"); + printk(" %02x", (unsigned char)buf[i]); + printk("\n"); } if (!bufs) |