.checkpatch.conf 472 B

1234567891011121314151617181920212223
  1. # Not Linux, so don't expect a Linux tree.
  2. --no-tree
  3. # Temporary for false positive in checkpatch
  4. --ignore COMPLEX_MACRO
  5. # For CONFIG_SYS_I2C_NOPROBES
  6. --ignore MULTISTATEMENT_MACRO_USE_DO_WHILE
  7. # For simple_strtoul
  8. --ignore CONSIDER_KSTRTO
  9. # For min/max
  10. --ignore MINMAX
  11. # enable more tests
  12. --strict
  13. # Not Linux, so we don't recommend usleep_range() over udelay()
  14. --ignore USLEEP_RANGE
  15. # Ignore networking block comment style
  16. --ignore NETWORKING_BLOCK_COMMENT_STYLE