]> xenbits.xensource.com Git - xen.git/commitdiff
x86/ucode: Extend warning about disabling digest check too
authorAndrew Cooper <andrew.cooper3@citrix.com>
Wed, 9 Apr 2025 10:36:40 +0000 (11:36 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Wed, 9 Apr 2025 10:55:03 +0000 (11:55 +0100)
This was missed by accident.

Fixes: b63951467e96 ("x86/ucode: Extend AMD digest checks to cover Zen5 CPUs")
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
xen/arch/x86/cpu/microcode/amd.c

index 4bc490dedca75466fdf97e69f29c17161a309166..ebd9ecbeef0f5644db57fa3e6b4532d7d5613e53 100644 (file)
@@ -516,8 +516,7 @@ static const struct microcode_ops __initconst_cf_clobber amd_ucode_ops = {
 
 void __init ucode_probe_amd(struct microcode_ops *ops)
 {
-    if ( !opt_digest_check &&
-         boot_cpu_data.x86 >= 0x17 && boot_cpu_data.x86 <= 0x19 )
+    if ( !opt_digest_check && boot_cpu_data.x86 >= 0x17 )
     {
         printk(XENLOG_WARNING
                "Microcode patch additional digest checks disabled");