Alexander Couzens has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/84186?usp=email )
Change subject: util/inteltool: pci ids are 16 bit ......................................................................
util/inteltool: pci ids are 16 bit
Signed-off-by: Alexander Couzens lynxis@fe80.eu Change-Id: I87804a63f04b7461d348a245531542776575eb7a --- M util/inteltool/memory.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/86/84186/1
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c index 3e7d3d7..ae25494 100644 --- a/util/inteltool/memory.c +++ b/util/inteltool/memory.c @@ -242,7 +242,7 @@ break; default: printf("Error: Dumping MCHBAR on this northbridge is not (yet) supported.\n"); - printf("Error: Unknown PCI id: %08x/%08x\n", nb->vendor_id, nb->device_id); + printf("Error: Unknown PCI id: %04x/%04x\n", nb->vendor_id, nb->device_id); return 1; }