Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4a2eae9 authored by Vijayanand Jitta's avatar Vijayanand Jitta Committed by Gerrit - the friendly Code Review server
Browse files

scripts: checkpatch: Allow quicinc.com identity



Since @quicinc.com identity is now allowed, remove the check
for it from author and Signed-off-by fields.

Change-Id: I83dfae8511f11fcc849db98c42b998ba3c5c0345
Signed-off-by: default avatarVijayanand Jitta <vjitta@codeaurora.org>
Signed-off-by: default avatarKomal Bajaj <kbajaj@codeaurora.org>
parent d9e397cf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2607,7 +2607,7 @@ sub process {
					$qca_sign_off = 1;
				} elsif ($line =~ /^\s*signed-off-by:.*codeaurora\.org/i) {
					$codeaurora_sign_off = 1;
				} elsif ($line =~ /^\s*signed-off-by:.*(quicinc|qualcomm)\.com/i) {
				} elsif ($line =~ /^\s*signed-off-by:.*qualcomm\.com/i) {
					WARN("BAD_SIGN_OFF",
					     "invalid Signed-off-by identity\n" . $line );
				}
@@ -2746,7 +2746,7 @@ sub process {

#check the patch for invalid author credentials
		if ($chk_author && !($line =~ /^From:.*qca\.qualcomm\.com/) &&
		    $line =~ /^From:.*(quicinc|qualcomm)\.com/) {
		    $line =~ /^From:.*qualcomm\.com/) {
			WARN("BAD_AUTHOR", "invalid author identity\n" . $line );
		}