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

Commit d2172eb5 authored by Andy Whitcroft's avatar Andy Whitcroft Committed by Linus Torvalds
Browse files

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: default avatarAndy Whitcroft <apw@shadowen.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7429c690
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -168,12 +168,11 @@ our @modifierList = (
);

sub build_types {
	my $mods = "(?:  \n" . join("|\n  ", @modifierList) . "\n)";
	my $all = "(?:  \n" . join("|\n  ", @typeList) . "\n)";
	my $mods = "(?x:  \n" . join("|\n  ", @modifierList) . "\n)";
	my $all = "(?x:  \n" . join("|\n  ", @typeList) . "\n)";
	$Modifier	= qr{(?:$Attribute|$Sparse|$mods)};
	$NonptrType	= qr{
			(?:const\s+)?
			(?:$mods\s+)?
			(?:$Modifier\s+|const\s+)*
			(?:
				(?:typeof|__typeof__)\s*\(\s*\**\s*$Ident\s*\)|
				(?:${all}\b)