diff options
author | Hui Zhu <teawater@gmail.com> | 2011-08-25 15:59:08 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-25 16:25:33 -0700 |
commit | 30ecad51849ae132dc6ef6ddb62d499c7257515b (patch) | |
tree | cf6781cde6f1929c93c2d3c393188257aa7031e9 /scripts/checkpatch.pl | |
parent | 3d1c2f72a9464c9880054194af0c041d7beb9124 (diff) | |
download | op-kernel-dev-30ecad51849ae132dc6ef6ddb62d499c7257515b.zip op-kernel-dev-30ecad51849ae132dc6ef6ddb62d499c7257515b.tar.gz |
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 <teawater@gmail.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 9d761c9..3dfc471 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); } } |