do_checkpatch.sh 812 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2015 Intel Corporation.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. [ -f $1 ] && rm $1
  8. [ -f $1_error.types ] && rm $1_error.types
  9. [ -f $1_warning.types ] && rm $1_warning.types
  10. dirs_to_check="arch drivers include kernel lib"
  11. files=$(for d in ${dirs_to_check}; do find $d/ -type f -name '*.[ch]'; done)
  12. for i in $files; do
  13. ${ZEPHYR_BASE}/scripts/checkpatch.pl --mailback --no-tree -f --emacs --summary-file --show-types --ignore BRACES,PRINTK_WITHOUT_KERN_LEVEL,SPLIT_STRING --max-line-length=100 $i >> $1
  14. done
  15. grep ERROR: $1 |cut -d : -f 3,4 |sort -u > $1_error.types
  16. grep WARNING: $1 |cut -d : -f 3,4 |sort -u > $1_warning.types
  17. for i in `cat $1_error.types`; do
  18. echo -n $i ' '; grep $i $1 | wc -l
  19. done
  20. for i in `cat $1_warning.types`; do
  21. echo -n $i ' '; grep $i $1 | wc -l
  22. done