From d01826843e258cb262961ea0bde05eb80754747a Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 12 Dec 2023 20:34:46 +0100 Subject: soc/amd/genoa/chip: add init & final functions and chip name Signed-off-by: Arthur Heymans Signed-off-by: Felix Held Change-Id: I00a567f417b1e22167923fc3193583138718dbbd Reviewed-on: https://review.coreboot.org/c/coreboot/+/79463 Reviewed-by: Martin L Roth Reviewed-by: Varshit Pandya Tested-by: build bot (Jenkins) --- src/soc/amd/genoa/chip.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/soc/amd/genoa/chip.c b/src/soc/amd/genoa/chip.c index cbe3e130b9..46f43d1f48 100644 --- a/src/soc/amd/genoa/chip.c +++ b/src/soc/amd/genoa/chip.c @@ -2,4 +2,16 @@ #include -struct chip_operations soc_amd_genoa_ops = { NULL }; +static void soc_init(void *chip_info) +{ +} + +static void soc_final(void *chip_info) +{ +} + +struct chip_operations soc_amd_genoa_ops = { + CHIP_NAME("AMD Genoa SoC") + .init = soc_init, + .final = soc_final, +}; -- cgit v1.2.3