checkpatch: possible modifiers are not being correctly matched
Although we are finding the added modifier in the declaration below we are not correctly matching it as a type. Fix the declaration. static void __ref *vmem_alloc_pages(unsigned int order) { } Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
7429c6903e
commit
d2172eb5bd
|
@ -168,12 +168,11 @@ our @modifierList = (
|
||||||
);
|
);
|
||||||
|
|
||||||
sub build_types {
|
sub build_types {
|
||||||
my $mods = "(?: \n" . join("|\n ", @modifierList) . "\n)";
|
my $mods = "(?x: \n" . join("|\n ", @modifierList) . "\n)";
|
||||||
my $all = "(?: \n" . join("|\n ", @typeList) . "\n)";
|
my $all = "(?x: \n" . join("|\n ", @typeList) . "\n)";
|
||||||
$Modifier = qr{(?:$Attribute|$Sparse|$mods)};
|
$Modifier = qr{(?:$Attribute|$Sparse|$mods)};
|
||||||
$NonptrType = qr{
|
$NonptrType = qr{
|
||||||
(?:const\s+)?
|
(?:$Modifier\s+|const\s+)*
|
||||||
(?:$mods\s+)?
|
|
||||||
(?:
|
(?:
|
||||||
(?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
|
(?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
|
||||||
(?:${all}\b)
|
(?:${all}\b)
|
||||||
|
|
Loading…
Reference in New Issue