diff --git a/.checkpatch.conf b/.checkpatch.conf index 7107b75c46ec..bb25701e2aaa 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -1,7 +1,7 @@ --emacs --summary-file --show-types ---max-line-length=80 +--max-line-length=100 --min-conf-desc-length=1 --typedefsfile=scripts/checkpatch/typedefsfile diff --git a/scripts/ci/check_compliance.py b/scripts/ci/check_compliance.py index c514d7bb9af1..5d116bad349f 100755 --- a/scripts/ci/check_compliance.py +++ b/scripts/ci/check_compliance.py @@ -213,11 +213,7 @@ def run(self): except subprocess.CalledProcessError as ex: output = ex.output.decode("utf-8") - if re.search("[1-9][0-9]* errors,", output): - self.add_failure(output) - else: - # No errors found, but warnings. Show them. - self.add_info(output) + self.add_failure(output) class KconfigCheck(ComplianceTest):