[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20251126113442.877024-1-andrew.cooper3@citrix.com>
Date: Wed, 26 Nov 2025 11:34:42 +0000
From: Andrew Cooper <andrew.cooper3@...rix.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Andrew Cooper <andrew.cooper3@...rix.com>,
Borislav Petkov <bp@...en8.de>,
Mario Limonciello <mario.limonciello@....com>,
x86@...nel.org
Subject: [PATCH] x86/cpu/amd: Use ZEN_MODEL_STEP_UCODE() for erratum_1386_microcode[]
... to simplify the result.
No functional change.
Signed-off-by: Andrew Cooper <andrew.cooper3@...rix.com>
---
CC: Borislav Petkov <bp@...en8.de>
CC: Mario Limonciello <mario.limonciello@....com>
CC: x86@...nel.org
CC: linux-kernel@...r.kernel.org
---
arch/x86/kernel/cpu/amd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
index a92750f3079a..505ff37b850c 100644
--- a/arch/x86/kernel/cpu/amd.c
+++ b/arch/x86/kernel/cpu/amd.c
@@ -873,8 +873,8 @@ static void init_amd_bd(struct cpuinfo_x86 *c)
}
static const struct x86_cpu_id erratum_1386_microcode[] = {
- X86_MATCH_VFM_STEPS(VFM_MAKE(X86_VENDOR_AMD, 0x17, 0x01), 0x2, 0x2, 0x0800126e),
- X86_MATCH_VFM_STEPS(VFM_MAKE(X86_VENDOR_AMD, 0x17, 0x31), 0x0, 0x0, 0x08301052),
+ ZEN_MODEL_STEP_UCODE(0x17, 0x01, 0x2, 0x0800126e),
+ ZEN_MODEL_STEP_UCODE(0x17, 0x31, 0x0, 0x08301052),
{}
};
--
2.39.5
Powered by blists - more mailing lists