Attention is currently required from: Jason Glenesk, Raul Rangel, Marshall Dawson. Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50439 )
Change subject: soc/amd/cezanne/chip: add empty set_mmio_dev_ops ......................................................................
soc/amd/cezanne/chip: add empty set_mmio_dev_ops
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I2ac5fcd17b6aed464a0d1e55f2860574501f7a8a --- M src/soc/amd/cezanne/chip.c 1 file changed, 7 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/39/50439/1
diff --git a/src/soc/amd/cezanne/chip.c b/src/soc/amd/cezanne/chip.c index 9a0ca6a..4aac2ec 100644 --- a/src/soc/amd/cezanne/chip.c +++ b/src/soc/amd/cezanne/chip.c @@ -17,6 +17,10 @@ .scan_bus = pci_domain_scan_bus, };
+static void set_mmio_dev_ops(struct device *dev) +{ +} + static void enable_dev(struct device *dev) { /* Set the operations if it is a special bus type */ @@ -27,6 +31,9 @@ case DEVICE_PATH_CPU_CLUSTER: dev->ops = &cpu_bus_ops; break; + case DEVICE_PATH_MMIO: + set_mmio_dev_ops(dev); + break; default: break; }