Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e797416 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] em28xx: mark printk continuation lines as such



This driver has a lot of printk continuation lines for
debugging purposes. Since commit 56387331
("Merge branch 'printk-cleanups"), this won't work as expected
anymore. So, let's add KERN_CONT to those lines.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 5ccb197d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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);