mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
9e79a8d17c
When use checkpatch.pl to check network related patch, it will report --->8--- WARNING: networking block comments don't use an empty /* line, use /* Comment... ---<8--- So, add --ignore NETWORKING_BLOCK_COMMENT_STYLE into .checkpatch.conf This will help to keep all driver include network related driver use the same comment style Signed-off-by: Bo Shen <voice.shen@atmel.com>
23 lines
472 B
Text
23 lines
472 B
Text
# Not Linux, so don't expect a Linux tree.
|
|
--no-tree
|
|
|
|
# Temporary for false positive in checkpatch
|
|
--ignore COMPLEX_MACRO
|
|
|
|
# For CONFIG_SYS_I2C_NOPROBES
|
|
--ignore MULTISTATEMENT_MACRO_USE_DO_WHILE
|
|
|
|
# For simple_strtoul
|
|
--ignore CONSIDER_KSTRTO
|
|
|
|
# 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
|