[PATCH] checkpatch: Recognise "Debugged-by" tags

From: Michael Ellerman
Date: Tue Oct 24 2023 - 07:17:35 EST


Currently checkpatch complains about "Debugged-by:" tags:

WARNING: Non-standard signature: Debugged-by:
#33:
Debugged-by: Jane Doe <jane@xxxxxxx>

There are over 150 Debugged-by tags already in the history, so
checkpatch should allow them.

Additionally checkpatch will now catch small typos, eg:

WARNING: Non-standard signature: 'Debuged-by:' - perhaps 'Debugged-by:'?
#17:
Debuged-by: Jane Doe <jane@xxxxxxx>

Signed-off-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
---
scripts/checkpatch.pl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 7d16f863edf1..31774351bae1 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -618,6 +618,7 @@ our $signature_tags = qr{(?xi:
Reviewed-by:|
Reported-by:|
Suggested-by:|
+ Debugged-by:|
To:|
Cc:
)};
@@ -711,7 +712,7 @@ sub find_standard_signature {
my ($sign_off) = @_;
my @standard_signature_tags = (
'Signed-off-by:', 'Co-developed-by:', 'Acked-by:', 'Tested-by:',
- 'Reviewed-by:', 'Reported-by:', 'Suggested-by:'
+ 'Reviewed-by:', 'Reported-by:', 'Suggested-by:', 'Debugged-by:'
);
foreach my $signature (@standard_signature_tags) {
return $signature if (get_edit_distance($sign_off, $signature) <= 2);
--
2.41.0