X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=.checkpatch.conf;h=9e40ea060be11523592b842ce7ac3da2a2640b73;hb=1ac3b720770336a58469ae9345e57dcb9ae81e44;hp=977db9edbbddcb202d02704854731e033794b744;hpb=05622191e510e495b6a06da6342126e80a3fed8f;p=platform%2Fkernel%2Fu-boot.git diff --git a/.checkpatch.conf b/.checkpatch.conf index 977db9e..9e40ea06 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -12,3 +12,25 @@ # For min/max --ignore MINMAX + +# enable more tests +--strict + +# Not Linux, so we don't recommend usleep_range() over udelay() +--ignore USLEEP_RANGE + +# Ignore networking block comment style +--ignore NETWORKING_BLOCK_COMMENT_STYLE + +# Ignore "WARNING: Prefer ether_addr_copy() over memcpy() if the Ethernet +# addresses are __aligned(2)". +--ignore PREFER_ETHER_ADDR_COPY + +# ENOSYS is a conventionally used error, even though U-Boot lacks system calls. +--ignore ENOSYS + +# A bit shorter of a description is OK with us. +--min-conf-desc-length=2 + +# Extra checks for U-Boot +--u-boot