From 2e1624fb6931db6b76a0e3db4cb6213d10f4c9bc Mon Sep 17 00:00:00 2001 From: Johnny Lin Date: Mon, 13 Mar 2023 09:18:29 +0800 Subject: [PATCH] soc/intel/xeon_sp: Rename nb_acpi.c to uncore_acpi.c With newer xeon_sp processors, the concept of "north bridge" became obsolete, instead uncore should be used. Therefore we use uncore_acpi.c (instead of nb_acpi.c) going forward. Change-Id: I91ec9023152996bf9f2300a369aff3c4f19d75fd Signed-off-by: Johnny Lin Reviewed-on: https://review.coreboot.org/c/coreboot/+/73696 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan Zhang --- src/soc/intel/xeon_sp/Makefile.inc | 2 +- src/soc/intel/xeon_sp/{nb_acpi.c => uncore_acpi.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/soc/intel/xeon_sp/{nb_acpi.c => uncore_acpi.c} (100%) diff --git a/src/soc/intel/xeon_sp/Makefile.inc b/src/soc/intel/xeon_sp/Makefile.inc index 4124f420c2..4fb9b8e293 100644 --- a/src/soc/intel/xeon_sp/Makefile.inc +++ b/src/soc/intel/xeon_sp/Makefile.inc @@ -11,7 +11,7 @@ romstage-y += ../../../cpu/intel/car/romstage.c ramstage-y += uncore.c reset.c util.c lpc.c spi.c ramstage.c chip_common.c ramstage-y += memmap.c pch.c lockdown.c finalize.c ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmc.c pmutil.c -ramstage-$(CONFIG_HAVE_ACPI_TABLES) += nb_acpi.c acpi.c +ramstage-$(CONFIG_HAVE_ACPI_TABLES) += uncore_acpi.c acpi.c ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c smm-y += smihandler.c pmutil.c postcar-y += spi.c diff --git a/src/soc/intel/xeon_sp/nb_acpi.c b/src/soc/intel/xeon_sp/uncore_acpi.c similarity index 100% rename from src/soc/intel/xeon_sp/nb_acpi.c rename to src/soc/intel/xeon_sp/uncore_acpi.c