diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-02-10 16:17:13 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-02-11 16:16:37 +0000 |
commit | b2d8a5c01724eab24e7b00bb58c8eaf06e9377af (patch) | |
tree | ff7349921c64eebe918d245ccc5d953193b2bc02 /src/soc/amd/cezanne | |
parent | aa77d1364f3e1cce0ee9f06b30b1a5ffc6d8321e (diff) |
soc/amd/cezanne: add empty mp_init_cpus
Change-Id: I845a7e2cfea58ca08cd2a6f0d884dbbbe1a7bdef
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50483
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/cezanne')
-rw-r--r-- | src/soc/amd/cezanne/chip.c | 5 | ||||
-rw-r--r-- | src/soc/amd/cezanne/cpu.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/soc/amd/cezanne/chip.c b/src/soc/amd/cezanne/chip.c index 4aac2eca24..6e4df42bb9 100644 --- a/src/soc/amd/cezanne/chip.c +++ b/src/soc/amd/cezanne/chip.c @@ -7,8 +7,9 @@ #include "chip.h" struct device_operations cpu_bus_ops = { - .read_resources = noop_read_resources, - .set_resources = noop_set_resources, + .read_resources = noop_read_resources, + .set_resources = noop_set_resources, + .init = mp_cpu_bus_init, }; static struct device_operations pci_domain_ops = { diff --git a/src/soc/amd/cezanne/cpu.c b/src/soc/amd/cezanne/cpu.c index cd2d6ed4b1..b199d99251 100644 --- a/src/soc/amd/cezanne/cpu.c +++ b/src/soc/amd/cezanne/cpu.c @@ -7,6 +7,10 @@ #include <device/device.h> #include <soc/cpu.h> +void mp_init_cpus(struct bus *cpu_bus) +{ +} + static void zen_2_3_init(struct device *dev) { setup_lapic(); |