From 3a8c5782232ac90d89794ddbaba05c5e08902b00 Mon Sep 17 00:00:00 2001 From: leoliu-oc Date: Mon, 9 Mar 2026 14:32:57 +0800 Subject: [PATCH] apei/ghes: Add Zhaoxin platform support for ghes_edac zhaoxin inclusion category: feature -------------------- Add ghes_edac driver platform support for Zhaoxin-based systems by extending the platform detection list in ghes.c. Signed-off-by: Tony W.Wang Signed-off-by: Lyle Li Signed-off-by: leoliu-oc --- drivers/acpi/apei/ghes.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c index 465e8dff71d6..669a5012fc96 100644 --- a/drivers/acpi/apei/ghes.c +++ b/drivers/acpi/apei/ghes.c @@ -1625,6 +1625,8 @@ void __init acpi_ghes_init(void) */ static struct acpi_platform_list plat_list[] = { {"HPE ", "Server ", 0, ACPI_SIG_FADT, all_versions}, + {"__ZX__", "EDK2 ", 3, ACPI_SIG_FADT, greater_than_or_equal}, + {"_BYO_ ", "BYOSOFT ", 3, ACPI_SIG_FADT, greater_than_or_equal}, { } /* End */ }; -- Gitee