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>
This commit is contained in:
Felix Held 2021-02-10 16:17:13 +01:00
parent aa77d1364f
commit b2d8a5c017
2 changed files with 7 additions and 2 deletions

View File

@ -9,6 +9,7 @@
struct device_operations cpu_bus_ops = {
.read_resources = noop_read_resources,
.set_resources = noop_set_resources,
.init = mp_cpu_bus_init,
};
static struct device_operations pci_domain_ops = {

View File

@ -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();