Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74659 )
Change subject: cpu/amd/pi/00730F01: rename fixme.c to cpu_io_init.c ......................................................................
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 felix-coreboot@felixheld.de Change-Id: I97d1ac2b12c624210c570f189f825409bd64f318 --- M src/cpu/amd/pi/00730F01/Makefile.inc R src/cpu/amd/pi/00730F01/cpu_io_init.c 2 files changed, 16 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/74659/1
diff --git a/src/cpu/amd/pi/00730F01/Makefile.inc b/src/cpu/amd/pi/00730F01/Makefile.inc index 51f90ef..ae5a20b 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