osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ci/+/29448 )
Change subject: lint: ignore STATIC_CONST_CHAR_ARRAY ......................................................................
lint: ignore STATIC_CONST_CHAR_ARRAY
Related: https://gerrit.osmocom.org/c/libosmo-gprs/+/29402 Change-Id: I09eecd9382842293ab231eb9cc92756fbe7723c1 --- M lint/checkpatch/checkpatch_osmo.sh 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/48/29448/1
diff --git a/lint/checkpatch/checkpatch_osmo.sh b/lint/checkpatch/checkpatch_osmo.sh index 7a60ad6..b675431 100755 --- a/lint/checkpatch/checkpatch_osmo.sh +++ b/lint/checkpatch/checkpatch_osmo.sh @@ -75,6 +75,7 @@ # * REPEATED_WORD: false positives in doxygen descriptions (e.g. '\param[in] data Data passed through...') # * SPDX_LICENSE_TAG: we don't place it on line 1 # * SPLIT_STRING: we do split long messages over multiple lines +# * STATIC_CONST_CHAR_ARRAY: not followed # * STRING_FRAGMENTS: sometimes used intentionally to improve readability # * TRACING_LOGGING: recommends to use kernel's internal ftrace instead of printf("%s()\n", __func__) # * TRAILING_STATEMENTS: not followed, e.g. 'while (osmo_select_main_ctx(1) > 0);' is put in one line @@ -116,6 +117,7 @@ --ignore REPEATED_WORD \ --ignore SPDX_LICENSE_TAG \ --ignore SPLIT_STRING \ + --ignore STATIC_CONST_CHAR_ARRAY \ --ignore STRING_FRAGMENTS \ --ignore TRACING_LOGGING \ --ignore TRAILING_STATEMENTS \