projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
538f188
)
[PATCH] i386: Avoid boot warning with apic=debug
author
Andi Kleen
<ak@suse.de>
Thu, 7 Dec 2006 01:14:11 +0000
(
02:14
+0100)
committer
Andi Kleen
<andi@basil.nowhere.org>
Thu, 7 Dec 2006 01:14:11 +0000
(
02:14
+0100)
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>
arch/i386/mach-generic/probe.c
patch
|
blob
|
history
diff --git
a/arch/i386/mach-generic/probe.c
b/arch/i386/mach-generic/probe.c
index 94b1fd9cbe3cdaef7aaed0b5dcb84bfcff12d7a4..a7b3999bb37a8e4ab63b8f189de86e2619ee89fb 100644
(file)
--- 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);