|
@@ -571,14 +571,11 @@ scan_microcode(struct mc_saved_data *mc_saved_data, unsigned long *initrd,
|
|
static void
|
|
static void
|
|
print_ucode_info(struct ucode_cpu_info *uci, unsigned int date)
|
|
print_ucode_info(struct ucode_cpu_info *uci, unsigned int date)
|
|
{
|
|
{
|
|
- int cpu = smp_processor_id();
|
|
|
|
-
|
|
|
|
- pr_info("CPU%d microcode updated early to revision 0x%x, date = %04x-%02x-%02x\n",
|
|
|
|
- cpu,
|
|
|
|
- uci->cpu_sig.rev,
|
|
|
|
- date & 0xffff,
|
|
|
|
- date >> 24,
|
|
|
|
- (date >> 16) & 0xff);
|
|
|
|
|
|
+ pr_info_once("microcode updated early to revision 0x%x, date = %04x-%02x-%02x\n",
|
|
|
|
+ uci->cpu_sig.rev,
|
|
|
|
+ date & 0xffff,
|
|
|
|
+ date >> 24,
|
|
|
|
+ (date >> 16) & 0xff);
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_X86_32
|
|
#ifdef CONFIG_X86_32
|