From 613f9fc91f7b3894d862dc48e118d212f788381b Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 26 Jan 2021 18:09:46 +0100 Subject: soc/amd/cezanne/chip: add empty SoC device operations Signed-off-by: Felix Held Change-Id: Ic6321223b3b4b8d27ac696fdeeec75fd4bd1e6bb Reviewed-on: https://review.coreboot.org/c/coreboot/+/49952 Reviewed-by: Raul Rangel Reviewed-by: Angel Pons Reviewed-by: Marshall Dawson Tested-by: build bot (Jenkins) --- src/soc/amd/cezanne/chip.c | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'src/soc/amd/cezanne') diff --git a/src/soc/amd/cezanne/chip.c b/src/soc/amd/cezanne/chip.c index 39c7083768..2869c932cb 100644 --- a/src/soc/amd/cezanne/chip.c +++ b/src/soc/amd/cezanne/chip.c @@ -3,4 +3,21 @@ #include #include "chip.h" -struct chip_operations soc_amd_cezanne_ops = { NULL }; +static void enable_dev(struct device *dev) +{ +} + +static void soc_init(void *chip_info) +{ +} + +static void soc_final(void *chip_info) +{ +} + +struct chip_operations soc_amd_cezanne_ops = { + CHIP_NAME("AMD Cezanne SoC") + .enable_dev = enable_dev, + .init = soc_init, + .final = soc_final +}; -- cgit v1.2.3