[media] em28xx: mark printk continuation lines as such
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 12 Oct 2016 10:10:10 +0000 (07:10 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 21 Oct 2016 10:36:40 +0000 (08:36 -0200)
This driver has a lot of printk continuation lines for
debugging purposes. Since commit 563873318d32
("Merge branch 'printk-cleanups"), this won't work as expected
anymore. So, let's add KERN_CONT to those lines.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/usb/em28xx/em28xx-core.c

index a73e853..06bee2d 100644 (file)
@@ -102,7 +102,7 @@ int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
                              0x0000, reg, dev->urb_buf, len, HZ);
        if (ret < 0) {
                if (reg_debug)
-                       printk(" failed!\n");
+                       printk(KERN_CONT " failed!\n");
                mutex_unlock(&dev->ctrl_urb_lock);
                return usb_translate_errors(ret);
        }
@@ -115,10 +115,10 @@ int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,
        if (reg_debug) {
                int byte;
 
-               printk("<<<");
+               printk(KERN_CONT "<<<");
                for (byte = 0; byte < len; byte++)
-                       printk(" %02x", (unsigned char)buf[byte]);
-               printk("\n");
+                       printk(KERN_CONT " %02x", (unsigned char)buf[byte]);
+               printk(KERN_CONT "\n");
        }
 
        return ret;
@@ -174,8 +174,8 @@ int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,
                        len & 0xff, len >> 8);
 
                for (byte = 0; byte < len; byte++)
-                       printk(" %02x", (unsigned char)buf[byte]);
-               printk("\n");
+                       printk(KERN_CONT " %02x", (unsigned char)buf[byte]);
+               printk(KERN_CONT "\n");
        }
 
        mutex_lock(&dev->ctrl_urb_lock);