Skip to content
Snippets Groups Projects
Commit c5caba03 authored by Simon Glass's avatar Simon Glass
Browse files

x86: pci: Don't stop when we get a vendor/device mismatch


These are quite common and we may as well press on and not be so picky.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent 222f25f8
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,7 @@ static int pci_rom_probe(pci_dev_t dev, uint class,
(vendev == mapped_vendev)) {
printf("ID mismatch: vendor ID %04x, device ID %04x\n",
rom_vendor, rom_device);
return -EPERM;
/* Continue anyway */
}
debug("PCI ROM image, Class Code %04x%02x, Code Type %02x\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment