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

checkpatch: replace __bitwise__ with __bitwise

__bitwise__ is an implementation detail now.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

+2 -2
+2 -2
scripts/checkpatch.pl
··· 335 335 __percpu| 336 336 __nocast| 337 337 __safe| 338 - __bitwise__| 338 + __bitwise| 339 339 __packed__| 340 340 __packed2__| 341 341 __naked| ··· 3681 3681 $line !~ /\btypedef\s+$Type\s*\(\s*\*?$Ident\s*\)\s*\(/ && 3682 3682 $line !~ /\btypedef\s+$Type\s+$Ident\s*\(/ && 3683 3683 $line !~ /\b$typeTypedefs\b/ && 3684 - $line !~ /\b__bitwise(?:__|)\b/) { 3684 + $line !~ /\b__bitwise\b/) { 3685 3685 WARN("NEW_TYPEDEFS", 3686 3686 "do not add new typedefs\n" . $herecurr); 3687 3687 }