aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-12-07 02:14:11 +0100
committerAndi Kleen <andi@basil.nowhere.org>2006-12-07 02:14:11 +0100
commit9a8cb626a08f2c8251291f3c0a049b29665895d2 (patch)
tree81015911c516d49f9de47f913848c4bf43acb176 /arch/i386
parent[PATCH] i386: i386 add Intel BTS cpufeature bit and detection (take 2) (diff)
downloadlinux-dev-9a8cb626a08f2c8251291f3c0a049b29665895d2.tar.xz
linux-dev-9a8cb626a08f2c8251291f3c0a049b29665895d2.zip
[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: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/i386')
-rw-r--r--arch/i386/mach-generic/probe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/i386/mach-generic/probe.c b/arch/i386/mach-generic/probe.c
index 94b1fd9cbe3c..a7b3999bb37a 100644
--- a/arch/i386/mach-generic/probe.c
+++ b/arch/i386/mach-generic/probe.c
@@ -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);