"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

checkpatch.pl: Ignore mdelay instead of udelay

Whereas in Linux, on ARM there is the notion of delay operations and
mdelay and udelay are not the same, here we just have udelay and mdelay
is a trivial wrapper. Tell checkpatch to not complain here.

Reported-by: Bhimeswararao Matsa <bhimeswararao.matsa@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>

Tom Rini 320d1d04 8c599da5

+3
+3
.checkpatch.conf
··· 19 19 # Not Linux, so we don't recommend usleep_range() over udelay() 20 20 --ignore USLEEP_RANGE 21 21 22 + # We also do not have a functionally different mdelay() and udelay() 23 + --ignore LONG_UDELAY 24 + 22 25 # Ignore networking block comment style 23 26 --ignore NETWORKING_BLOCK_COMMENT_STYLE 24 27