1
0
Fork 0

checkpatch: ## is not a valid modifier

Inserting a # into the modifiers list will incorrectly add the null string
to the modifiers list, leading to an infinite loop.  As neither of these
is a valid modifier form simply ignore them.

Signed-off-by: Andy Whitcroft <apw@canonical.com>
Reported-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Andy Whitcroft 2012-01-10 15:10:00 -08:00 committed by Linus Torvalds
parent d7c76ba7e5
commit 89a883530f
1 changed files with 3 additions and 1 deletions

View File

@ -1224,7 +1224,9 @@ sub possible {
case|
else|
asm|__asm__|
do
do|
\#|
\#\#|
)(?:\s|$)|
^(?:typedef|struct|enum)\b
)}x;