[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>
This commit is contained in:
Andrew Morton 2006-05-01 12:15:52 -07:00 committed by Linus Torvalds
parent 42e4c8585f
commit f3a19cb45f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}