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

This reverts commit d2236acdd7.

Change-Id: I6acc96638949aa724af623dbd4aa9d6e95f8a518
Signed-off-by: Hepson Sanchez <sanchez@codeaurora.org>
This commit is contained in:
Hepson Sanchez 2019-07-10 13:59:42 -07:00 committed by Elliot Berman
parent 844cb3e3ab
commit 216e7ad2d3

View file

@ -5714,7 +5714,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);