device/device.c: remove warning for missing apic read resources
We have had the "APIC: 00 missing read_resources" messages for many years. It's obviously not an error, and also doesn't cause boot failures. Therefore, remove the message. Change-Id: I7f99c5950a3457df04e7ef6edb456b70dba9680c Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: http://review.coreboot.org/12471 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
9d0330f537
commit
7bc74ab25b
|
@ -222,6 +222,7 @@ static void read_resources(struct bus *bus)
|
|||
continue;
|
||||
|
||||
if (!curdev->ops || !curdev->ops->read_resources) {
|
||||
if (curdev->path.type != DEVICE_PATH_APIC)
|
||||
printk(BIOS_ERR, "%s missing read_resources\n",
|
||||
dev_path(curdev));
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue