From: Kamalesh Babulal Date: Mon, 14 Mar 2022 10:35:06 +0000 (+0530) Subject: .checkpatch.conf: add NEW_TYPEDEFS to ignore-list X-Git-Tag: v3.0~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90080b9a56cbd2585624f81b401c4e108924a23e;p=thirdparty%2Flibcgroup.git .checkpatch.conf: add NEW_TYPEDEFS to ignore-list There are tools/files, that introduce new typdefs and checkpatch.pl is unhappy about it. It takes some re-work on removing and for now let's teach checkpatch to ignore it. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/.checkpatch.conf b/.checkpatch.conf index 43ac0287..c466644d 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@ -13,3 +13,7 @@ # Kernel specific kstr* functions recommendation doesn't apply to us. --ignore SSCANF_TO_KSTRTO + +# Ignore new typedefs introduction warnings for now. We need to revisit files +# introducing it and remove it. +--ignore NEW_TYPEDEFS