aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2007-09-30 11:05:18 +0000
committerMarius Strobl <marius@FreeBSD.org>2007-09-30 11:05:18 +0000
commit55aaf894e8a76fe780757ef6d9d1119c367946cf (patch)
tree8043b70223b1a26b9d8903a04633a168390b18dc /tools
parent9140ec8e229385a784333f186a8323dcdfd84468 (diff)
Notes
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/pciroms/pciroms.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/tools/pciroms/pciroms.c b/tools/tools/pciroms/pciroms.c
index 8db9515d9fb1..460c7ef1f2b2 100644
--- a/tools/tools/pciroms/pciroms.c
+++ b/tools/tools/pciroms/pciroms.c
@@ -223,9 +223,10 @@ pci_enum_devs(int pci_fd, action_t action)
switch (action) {
case PRINT:
- printf("Bus %02Xh Device %02Xh Function %02Xh: ",
- p->pc_sel.pc_bus, p->pc_sel.pc_dev,
- p->pc_sel.pc_func);
+ printf(
+"Domain %04Xh Bus %02Xh Device %02Xh Function %02Xh: ",
+ p->pc_sel.pc_domain, p->pc_sel.pc_bus,
+ p->pc_sel.pc_dev, p->pc_sel.pc_func);
printf((romsize ? "%dKB ROM aperture detected."
: "No ROM present."), romsize/1024);
printf("\r\n");