diff options
Diffstat (limited to 'src/soc/amd/genoa/chip.c')
-rw-r--r-- | src/soc/amd/genoa/chip.c | 14 |
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, +}; |