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

Commit 9a8cb626 authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen
Browse files

[PATCH] i386: Avoid boot warning with apic=debug



There are two consumers of apic=: the apic debug level and the low
level generic architecture code. early_param would warn when the
low level code rejected "debug". Avoid this.

Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 538f188e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -45,7 +45,9 @@ static int __init parse_apic(char *arg)
			return 0;
		}
	}
	return -ENOENT;

	/* Parsed again by __setup for debug/verbose */
	return 0;
}
early_param("apic", parse_apic);