mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[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>
This commit is contained in:
parent
538f188e03
commit
9a8cb626a0
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue