From: Matt Porter Date: Fri, 15 Mar 2013 10:43:48 +0000 (+0000) Subject: .checkpatch.conf: ignore udelay->usleep_range warnings X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fu-boot.git;a=commitdiff_plain;h=1d766c419e6666d2e06c3b419b65c98fbc621a09 .checkpatch.conf: ignore udelay->usleep_range warnings usleep_range() is a Linux facility, ignore it when udelay() is encountered. Signed-off-by: Matt Porter --- diff --git a/.checkpatch.conf b/.checkpatch.conf index 38386b354d..d88af57129 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