Re: [patch V3 01/30] x86/microcode/32: Move early loading after paging enable
From: Chang S. Bae
Date: Sat Sep 16 2023 - 05:14:29 EST
On 9/12/2023 12:57 AM, Thomas Gleixner wrote:
static int apply_microcode_early(struct ucode_cpu_info *uci, bool early)
{
...
- if (early)
- print_ucode(old_rev, uci->cpu_sig.rev, mc->hdr.date);
- else
- print_ucode_info(old_rev, uci->cpu_sig.rev, mc->hdr.date);
-
Nitpick:
with this change, there is no need for the second argument -- 'bool early'.
Thanks,
Chang