aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/checkpatch.pl7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 8b69af8a76f9..dd11bbe01338 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2592,6 +2592,13 @@ sub process {
2592 } 2592 }
2593 } 2593 }
2594 2594
2595# warn about unexpectedly long msleep's
2596 if ($line =~ /\bmsleep\s*\((\d+)\);/) {
2597 if ($1 < 20) {
2598 WARN("msleep < 20ms can sleep for up to 20ms; see Documentation/timers/timers-howto.txt\n" . $line);
2599 }
2600 }
2601
2595# warn about #ifdefs in C files 2602# warn about #ifdefs in C files
2596# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) { 2603# if ($line =~ /^.\s*\#\s*if(|n)def/ && ($realfile =~ /\.c$/)) {
2597# print "#ifdef in C files should be avoided\n"; 2604# print "#ifdef in C files should be avoided\n";