mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
x86: microcode patch loader bugfix
Corrected CPU vendor check condition for AMD microcode patch loader initialization. Signed-off-by: Peter Oruba <peter.oruba@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
2f9284e4e3
commit
82b078659e
@ -450,7 +450,7 @@ static int __init microcode_init(void)
|
||||
|
||||
if (c->x86_vendor == X86_VENDOR_INTEL)
|
||||
microcode_ops = init_intel_microcode();
|
||||
else if (c->x86_vendor != X86_VENDOR_AMD)
|
||||
else if (c->x86_vendor == X86_VENDOR_AMD)
|
||||
microcode_ops = init_amd_microcode();
|
||||
|
||||
if (!microcode_ops) {
|
||||
|
Loading…
Reference in New Issue
Block a user