Terry Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63108 )
Change subject: device: Demote missing set resources message from error to warnings ......................................................................
device: Demote missing set resources message from error to warnings
While running power_Resume/control that shows the error "NONE missing set_resources". The message does seem more like a warning, therefore switch to BIOS_WARN instead.
BUG=b:223936777 TEST=USE="project_primus" emerge-brya coreboot chromeos-bootimage test_that -b {BOARD_NAME} {device IP} f:.*power_Resume/control
Signed-off-by: Terry Chen terry_chen@wistron.corp-partner.google.com Change-Id: I2cd7413b2c8d1c8f5ac0f3b77747839ddacb241b --- M src/device/pciexp_device.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/63108/1
diff --git a/src/device/pciexp_device.c b/src/device/pciexp_device.c index c525301..3614340 100644 --- a/src/device/pciexp_device.c +++ b/src/device/pciexp_device.c @@ -585,6 +585,7 @@
static struct device_operations pciexp_hotplug_dummy_ops = { .read_resources = pciexp_hotplug_dummy_read_resources, + .set_resources = noop_set_resources, };
void pciexp_hotplug_scan_bridge(struct device *dev)