From 90080b9a56cbd2585624f81b401c4e108924a23e Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Mon, 14 Mar 2022 16:05:06 +0530 Subject: [PATCH] .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 --- .checkpatch.conf | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.47.2