diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 7d16f863edf1c7..a9dbc9c6e26c57 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -617,6 +617,7 @@ sub hash_show_words { Tested-by:| Reviewed-by:| Reported-by:| + Reported-and-tested-by:| Suggested-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:', 'Reported-and-tested-by:', 'Suggested-by:' ); foreach my $signature (@standard_signature_tags) { return $signature if (get_edit_distance($sign_off, $signature) <= 2);