mirror of https://github.com/thesofproject/sof.git
check patch: allow C99 comments
This is a logical revert of eb45907
Based on recently merged #4941, C99 comments are now OK. I never found
any rationale or even written down coding style for excluding them in
the first place.
Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
parent
235255bc44
commit
60be65b567
|
@ -22,7 +22,7 @@ jobs:
|
||||||
# TODO: reduce duplication with scripts/sof-*-commit-hook.sh
|
# TODO: reduce duplication with scripts/sof-*-commit-hook.sh
|
||||||
# thanks to either some .conf file or some wrapper script
|
# thanks to either some .conf file or some wrapper script
|
||||||
CHK_CMD_OPTS: --ignore UNKNOWN_COMMIT_ID --codespell
|
CHK_CMD_OPTS: --ignore UNKNOWN_COMMIT_ID --codespell
|
||||||
--ignore C99_COMMENT_TOLERANCE
|
|
||||||
steps:
|
steps:
|
||||||
# depth 2 so:
|
# depth 2 so:
|
||||||
# ^1. we can show the Subject of the current target branch tip
|
# ^1. we can show the Subject of the current target branch tip
|
||||||
|
|
|
@ -7,4 +7,4 @@ set -e
|
||||||
# and with .github/workflows/ with either some .conf file
|
# and with .github/workflows/ with either some .conf file
|
||||||
# or some wrapper script
|
# or some wrapper script
|
||||||
exec git show --format=email HEAD |
|
exec git show --format=email HEAD |
|
||||||
./scripts/checkpatch.pl --no-tree --strict --codespell --ignore C99_COMMENT_TOLERANCE
|
./scripts/checkpatch.pl --no-tree --strict --codespell
|
||||||
|
|
Loading…
Reference in New Issue