aboutsummaryrefslogtreecommitdiffstats
path: root/init/main.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-05-01 12:15:52 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-05-01 18:17:43 -0700
commitf3a19cb45f4730c4ce09ca9bccf197efd010dc3b (patch)
tree8d335d5ecfebf4040865e09d3cdb0e7c012cc5c7 /init/main.c
parent[PATCH] i386: Remove apic= warning (diff)
downloadlinux-dev-f3a19cb45f4730c4ce09ca9bccf197efd010dc3b.tar.xz
linux-dev-f3a19cb45f4730c4ce09ca9bccf197efd010dc3b.zip
[PATCH] silence initcall warnings
Suppress the initcall-return-value warnings unless initcall_debug was specified. They do find bugs, but they're extremely small ones and as Andi points out, people get distressed. Cc: Andi Kleen <ak@muc.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--init/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c
index 4a2f0898dda1..f715b9b89753 100644
--- a/init/main.c
+++ b/init/main.c
@@ -582,7 +582,7 @@ static void __init do_initcalls(void)
result = (*call)();
- if (result && (result != -ENODEV || initcall_debug)) {
+ if (result && result != -ENODEV && initcall_debug) {
sprintf(msgbuf, "error code %d", result);
msg = msgbuf;
}