aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-12-12 20:34:46 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-12-13 20:26:51 +0000
commitd01826843e258cb262961ea0bde05eb80754747a (patch)
tree9092c846057086ec40ec876ae370098a10d00a33
parent4e4938bcb96ee62cf1da6017592d5dfd4eb83dbf (diff)
soc/amd/genoa/chip: add init & final functions and chip name
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I00a567f417b1e22167923fc3193583138718dbbd Reviewed-on: https://review.coreboot.org/c/coreboot/+/79463 Reviewed-by: Martin L Roth <gaumless@gmail.com> Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/soc/amd/genoa/chip.c14
1 files changed, 13 insertions, 1 deletions
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 <device/device.h>
-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,
+};