From: Joe Perches Date: Fri, 13 Feb 2015 22:38:54 +0000 (-0800) Subject: checkpatch: neaten printk_ratelimited message position X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=101ee6802a77d3a8f42538360a5e9c3f17d5d5b5;p=deliverable%2Flinux.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 a9baaabfae36..bf232642cbb3 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