From 7c302cf20859592a32e19fb6eb434dfb06b1d3c3 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Fri, 21 Apr 2023 17:57:17 +0200 Subject: [PATCH] cpu/amd/pi/00730F01: rename fixme.c to cpu_io_init.c Now that the code is in a much better shape and uses native coreboot functionality to perform the initialization, rename the file from fixme.c to cpu_io_init.c to be more descriptive of what it does. Signed-off-by: Felix Held Change-Id: I97d1ac2b12c624210c570f189f825409bd64f318 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74659 Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans --- src/cpu/amd/pi/00730F01/Makefile.inc | 4 ++-- src/cpu/amd/pi/00730F01/{fixme.c => cpu_io_init.c} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/cpu/amd/pi/00730F01/{fixme.c => cpu_io_init.c} (100%) diff --git a/src/cpu/amd/pi/00730F01/Makefile.inc b/src/cpu/amd/pi/00730F01/Makefile.inc index 51f90ef6e9..ae5a20bbf4 100644 --- a/src/cpu/amd/pi/00730F01/Makefile.inc +++ b/src/cpu/amd/pi/00730F01/Makefile.inc @@ -1,9 +1,9 @@ # SPDX-License-Identifier: GPL-2.0-only -romstage-y += fixme.c +romstage-y += cpu_io_init.c -ramstage-y += fixme.c ramstage-y += chip_name.c +ramstage-y += cpu_io_init.c ramstage-y += model_16_init.c ramstage-y += update_microcode.c diff --git a/src/cpu/amd/pi/00730F01/fixme.c b/src/cpu/amd/pi/00730F01/cpu_io_init.c similarity index 100% rename from src/cpu/amd/pi/00730F01/fixme.c rename to src/cpu/amd/pi/00730F01/cpu_io_init.c