summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
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 8db9515..460c7ef 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");
OpenPOWER on IntegriCloud