Commit 1d766c419e6666d2e06c3b419b65c98fbc621a09

Authored by Matt Porter
Committed by Tom Rini
1 parent 0cab42110d

.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>

Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff

... ... @@ -15,4 +15,7 @@
15 15  
16 16 # enable more tests
17 17 --strict
  18 +
  19 +# Not Linux, so we don't recommend usleep_range() over udelay()
  20 +--ignore USLEEP_RANGE