diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2023-11-30 18:14:04 +0000 |
---|---|---|
committer | Matt DeVillier <matt.devillier@amd.corp-partner.google.com> | 2023-12-04 15:51:41 +0000 |
commit | 9092d221a1ebb23953e6e61373106522510b1b2f (patch) | |
tree | f4d5a49158a8787be28d3513e523a4d9f407003f /util | |
parent | ceccd49ecb99c165671871440d6e9121ebda58ce (diff) |
inteltool: memory: log PCI id of unknown devices
Change-Id: I25396e5480c45729710b16345f997c78e8bcbccb
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79363
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'util')
-rw-r--r-- | util/inteltool/memory.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/inteltool/memory.c b/util/inteltool/memory.c index a536d39e01..6df878255d 100644 --- a/util/inteltool/memory.c +++ b/util/inteltool/memory.c @@ -237,6 +237,7 @@ int print_mchbar(struct pci_dev *nb, struct pci_access *pacc, const char *dump_s 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); return 1; } |