Those printk's were adding more info to a line that were already being
printed.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
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;
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)