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

Commit 65e7aaeb authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "checkpatch: Add exceptions for "dsb" keyword usage"

parents 71c9c140 43c5a63b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4595,7 +4595,7 @@ sub process {
		}

# dsb is too ARMish, and should usually be mb.
		if ($line =~ /\bdsb\b/) {
		if ($line =~ /[^-_>*\.]\bdsb\b[^-_\.;]/) {
			WARN("ARM_BARRIER",
			     "Use of dsb is discouranged: prefer mb.\n" .
			     $herecurr);