Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Revert "scripts/checkpatch: add Assisted-by: tag validation"

This reverts commit 8545d9bc4bd0801e0bdfbfdfdc2532ff31236ddf.

Unbeknownst to me, and unremarked upon by the checkpatch maintainer, this
same problem was also solved in the mm tree. Fixing it once is enough, so
this one comes out.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>

+1 -11
+1 -11
scripts/checkpatch.pl
··· 641 641 Reviewed-by:| 642 642 Reported-by:| 643 643 Suggested-by:| 644 - Assisted-by:| 645 644 To:| 646 645 Cc: 647 646 )}; ··· 737 738 my ($sign_off) = @_; 738 739 my @standard_signature_tags = ( 739 740 'Signed-off-by:', 'Co-developed-by:', 'Acked-by:', 'Tested-by:', 740 - 'Reviewed-by:', 'Reported-by:', 'Suggested-by:', 'Assisted-by:' 741 + 'Reviewed-by:', 'Reported-by:', 'Suggested-by:' 741 742 ); 742 743 foreach my $signature (@standard_signature_tags) { 743 744 return $signature if (get_edit_distance($sign_off, $signature) <= 2); ··· 3103 3104 $fixed[$fixlinenr] = 3104 3105 "$ucfirst_sign_off $email"; 3105 3106 } 3106 - } 3107 - 3108 - # Assisted-by: uses format AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2] instead of email 3109 - if ($sign_off =~ /^assisted-by:$/i) { 3110 - if ($email !~ /^[^:]+:\S+(\s+\S+)*$/) { 3111 - WARN("BAD_ASSISTED_BY", 3112 - "Assisted-by: should use format: 'Assisted-by: AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]'\n" . $herecurr); 3113 - } 3114 - next; 3115 3107 } 3116 3108 3117 3109 my ($email_name, $name_comment, $email_address, $comment) = parse_email($email);