Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/80645?usp=email )
Change subject: device/pnp_device: Demote unassigned resource printk to SPEW ......................................................................
device/pnp_device: Demote unassigned resource printk to SPEW
Often times not all available resources are used on a PNP function, so those resources not being specified is intentional, not an error. Keep the printk but demote it so it doesn't pollute a normal cbmem log.
TEST=build/boot purism/librem_cnl (Mini v2), verify errors in cbmem related to RTC IO/IRQ not being assigned are no longer present.
Change-Id: I3d9f22a06088596e14680190aede2d69880001fa Signed-off-by: Matt DeVillier matt.devillier@gmail.com --- M src/device/pnp_device.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/80645/1
diff --git a/src/device/pnp_device.c b/src/device/pnp_device.c index f799530..5c6ab8d 100644 --- a/src/device/pnp_device.c +++ b/src/device/pnp_device.c @@ -130,7 +130,7 @@ resource->index, resource_type(resource), resource->size); else - printk(BIOS_ERR, "%s %02lx %s size: 0x%010llx " + printk(BIOS_SPEW, "%s %02lx %s size: 0x%010llx " "not assigned in devicetree\n", dev_path(dev), resource->index, resource_type(resource), resource->size); return;