提交 9a8cb626 编写于 作者: A Andi Kleen 提交者: Andi Kleen

[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: NAndi Kleen <ak@suse.de>
上级 538f188e
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册