Attention is currently required from: Jason Glenesk, Marshall Dawson. Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/49952 )
Change subject: soc/amd/cezanne/chip: add empty SoC device operations ......................................................................
soc/amd/cezanne/chip: add empty SoC device operations
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ic6321223b3b4b8d27ac696fdeeec75fd4bd1e6bb --- M src/soc/amd/cezanne/chip.c 1 file changed, 18 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/49952/1
diff --git a/src/soc/amd/cezanne/chip.c b/src/soc/amd/cezanne/chip.c index 39c7083..2869c93 100644 --- a/src/soc/amd/cezanne/chip.c +++ b/src/soc/amd/cezanne/chip.c @@ -3,4 +3,21 @@ #include <device/device.h> #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 +};