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

Commit 42e4c858 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds
Browse files

[PATCH] i386: Remove apic= warning



The apic= option can be used to set the APIC driver too.  When that is done
this code would always produce bogus warnings.

Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5871aa6d
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -757,10 +757,6 @@ static int __init apic_set_verbosity(char *str)
		apic_verbosity = APIC_DEBUG;
		apic_verbosity = APIC_DEBUG;
	else if (strcmp("verbose", str) == 0)
	else if (strcmp("verbose", str) == 0)
		apic_verbosity = APIC_VERBOSE;
		apic_verbosity = APIC_VERBOSE;
	else
		printk(KERN_WARNING "APIC Verbosity level %s not recognised"
				" use apic=verbose or apic=debug\n", str);

	return 1;
	return 1;
}
}