From b9145e15888934992eed5dc70e5b4aaeb9103e77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBygowski?= Date: Fri, 5 Dec 2025 11:07:24 +0100 Subject: [PATCH] util/amdfwtool: Remove duplicated AMD_TA_IKEK MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The AMD_TA_IKEK occurrs twice in the amd_psp_fw_table, but the tool will only add it once anyways, so remove redundant entry. Change-Id: I7fd13552edf98d7adc749726c8bba46124aed495 Signed-off-by: Michał Żygowski Reviewed-on: https://review.coreboot.org/c/coreboot/+/90389 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- util/amdfwtool/amdfwtool.c | 1 - 1 file changed, 1 deletion(-) diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index 9e9ada79a7..bac1c5bdbf 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -255,7 +255,6 @@ amd_fw_entry amd_psp_fw_table[] = { { .type = AMD_FW_AMF_WLAN, .inst = 2, .level = PSP_LVL2 | PSP_LVL2_AB }, { .type = AMD_FW_AMF_WLAN, .inst = 3, .level = PSP_LVL2 | PSP_LVL2_AB }, { .type = AMD_FW_AMF_MFD, .level = PSP_LVL2 | PSP_LVL2_AB }, - { .type = AMD_TA_IKEK, .level = PSP_BOTH | PSP_LVL2_AB, .skip_hashing = true }, { .type = AMD_FW_MPCCX, .subprog = 0, .level = PSP_LVL2 | PSP_LVL2_AB }, { .type = AMD_FW_MPCCX, .subprog = 1, .level = PSP_LVL2 | PSP_LVL2_AB }, { .type = AMD_FW_LSDMA, .level = PSP_LVL2 | PSP_LVL2_AB },