From: Hui Zhu Date: Thu, 25 Aug 2011 22:59:08 +0000 (-0700) Subject: checkpatch: add missing WARN argument for min_t and max_t tests X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=30ecad51849ae132dc6ef6ddb62d499c7257515b;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git checkpatch: add missing WARN argument for min_t and max_t tests The test for bad usage of min_t() and max_t() is missing the --ignore type. Add it. Signed-off-by: Hui Zhu 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 9d761c95eca2..3dfc47134e51 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2574,7 +2574,8 @@ sub process { } else { $cast = $cast2; } - WARN("$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . $herecurr); + WARN("MINMAX", + "$call() should probably be ${call}_t($cast, $arg1, $arg2)\n" . $herecurr); } }