From: Joe Perches Date: Fri, 13 Feb 2015 22:38:54 +0000 (-0800) Subject: checkpatch: neaten printk_ratelimited message position X-Git-Tag: v4.0-rc1~90^2~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=101ee6802a77d3a8f42538360a5e9c3f17d5d5b5;p=platform%2Fkernel%2Flinux-exynos.git checkpatch: neaten printk_ratelimited message position Just neatening... Signed-off-by: Joe Perches Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index a9baaab..bf23264 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -3243,7 +3243,7 @@ sub process { # check for uses of printk_ratelimit if ($line =~ /\bprintk_ratelimit\s*\(/) { WARN("PRINTK_RATELIMITED", -"Prefer printk_ratelimited or pr__ratelimited to printk_ratelimit\n" . $herecurr); + "Prefer printk_ratelimited or pr__ratelimited to printk_ratelimit\n" . $herecurr); } # printk should use KERN_* levels. Note that follow on printk's on the