commit | 9134aebf24762911b11c3e1eb7d370ae11436d5c | [log] [tgz] |
---|---|---|
author | Matt Porter <mporter@ti.com> | Fri Mar 15 10:43:48 2013 +0000 |
committer | Tom Rini <trini@ti.com> | Wed Mar 27 15:30:11 2013 -0400 |
tree | bf089b6756eb91c339acbc39c6842c2a60c8bd0e | |
parent | 07fc462d8d508a274266952b651abcf8c3fe88d6 [diff] [blame] |
.checkpatch.conf: ignore udelay->usleep_range warnings usleep_range() is a Linux facility, ignore it when udelay() is encountered. Signed-off-by: Matt Porter <mporter@ti.com>
diff --git a/.checkpatch.conf b/.checkpatch.conf index 38386b3..d88af57 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf
@@ -15,3 +15,6 @@ # enable more tests --strict + +# Not Linux, so we don't recommend usleep_range() over udelay() +--ignore USLEEP_RANGE