diff options
-rw-r--r-- | arch/x86/kernel/head64.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index 57334f4cd3af..3ff35705fa6e 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <asm/e820.h> | 26 | #include <asm/e820.h> |
27 | #include <asm/bios_ebda.h> | 27 | #include <asm/bios_ebda.h> |
28 | #include <asm/bootparam_utils.h> | 28 | #include <asm/bootparam_utils.h> |
29 | #include <asm/microcode.h> | ||
29 | 30 | ||
30 | /* | 31 | /* |
31 | * Manage page tables very early on. | 32 | * Manage page tables very early on. |
@@ -170,6 +171,11 @@ void __init x86_64_start_kernel(char * real_mode_data) | |||
170 | 171 | ||
171 | copy_bootdata(__va(real_mode_data)); | 172 | copy_bootdata(__va(real_mode_data)); |
172 | 173 | ||
174 | /* | ||
175 | * Load microcode early on BSP. | ||
176 | */ | ||
177 | load_ucode_bsp(); | ||
178 | |||
173 | if (console_loglevel == 10) | 179 | if (console_loglevel == 10) |
174 | early_printk("Kernel alive\n"); | 180 | early_printk("Kernel alive\n"); |
175 | 181 | ||