Terry Chen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63078 )
Change subject: device: change set_resources to WARNING ......................................................................
device: change set_resources to WARNING
BUG=b:223936777 TEST=USE="project_primus" emerge-brya coreboot chromeos-bootimage
Signed-off-by: Terry Chen terry_chen@wistron.corp-partner.google.com Change-Id: Ie7e7923265c84999b97a075f0757e7a8d8963b2d --- M src/device/device.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/78/63078/1
diff --git a/src/device/device.c b/src/device/device.c index 8337d55..f860b49 100644 --- a/src/device/device.c +++ b/src/device/device.c @@ -277,7 +277,7 @@ continue;
if (!curdev->ops || !curdev->ops->set_resources) { - printk(BIOS_ERR, "%s missing set_resources\n", + printk(BIOS_WARNING, "%s missing set_resources\n", dev_path(curdev)); continue; }