linux/drivers/media/usb/em28xx
Mauro Carvalho Chehab c558d13c21 [media] em28xx: don't break long lines
Due to the 80-cols restrictions, and latter due to checkpatch
warnings, several strings were broken into multiple lines. This
is not considered a good practice anymore, as it makes harder
to grep for strings at the source code.

As we're right now fixing other drivers due to KERN_CONT, we need
to be able to identify what printk strings don't end with a "\n".
It is a way easier to detect those if we don't break long lines.

So, join those continuation lines.

The patch was generated via the script below, and manually
adjusted if needed.

</script>
use Text::Tabs;
while (<>) {
	if ($next ne "") {
		$c=$_;
		if ($c =~ /^\s+\"(.*)/) {
			$c2=$1;
			$next =~ s/\"\n$//;
			$n = expand($next);
			$funpos = index($n, '(');
			$pos = index($c2, '",');
			if ($funpos && $pos > 0) {
				$s1 = substr $c2, 0, $pos + 2;
				$s2 = ' ' x ($funpos + 1) . substr $c2, $pos + 2;
				$s2 =~ s/^\s+//;

				$s2 = ' ' x ($funpos + 1) . $s2 if ($s2 ne "");

				print unexpand("$next$s1\n");
				print unexpand("$s2\n") if ($s2 ne "");
			} else {
				print "$next$c2\n";
			}
			$next="";
			next;
		} else {
			print $next;
		}
		$next="";
	} else {
		if (m/\"$/) {
			if (!m/\\n\"$/) {
				$next=$_;
				next;
			}
		}
	}
	print $_;
}
</script>

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-10-21 09:40:51 -02:00
..
em28xx-audio.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-camera.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-cards.c [media] em28xx: don't break long lines 2016-10-21 09:40:51 -02:00
em28xx-core.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-dvb.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-i2c.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-input.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-reg.h [media] em28xx: add support for Hauppauge WinTV-dualHD DVB tuner 2016-05-09 14:25:39 -03:00
em28xx-v4l.h [media] em28xx: checkpatch cleanup: whitespaces/new lines cleanups 2014-12-04 14:13:14 -02:00
em28xx-vbi.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx-video.c [media] em28xx: convert the remaining printks to pr_foo 2016-10-21 08:38:07 -02:00
em28xx.h [media] em28xx: use pr_foo instead of em28xx-specific printk macros 2016-10-21 08:37:26 -02:00
Kconfig [media] em28xx: add support for PLEX PX-BCUD (ISDB-S) 2016-05-06 23:51:47 -03:00
Makefile [media] em28xx: make em28xx-video to be a separate module 2014-01-07 05:09:26 -02:00