aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2023-12-08 20:23:02 +0100
committerHelge Deller <deller@gmx.de>2024-01-04 18:48:50 +0100
commitb77d66680283670ccfb7277c61f0360752f04be1 (patch)
tree5bcc72459322d10b5d9ef19c5c11d545d222fd0b
parent7584f4f54607c463c72d87a33b163c1cd593ca82 (diff)
downloadseabios-hppa-b77d66680283670ccfb7277c61f0360752f04be1.zip
seabios-hppa-b77d66680283670ccfb7277c61f0360752f04be1.tar.gz
seabios-hppa-b77d66680283670ccfb7277c61f0360752f04be1.tar.bz2
parisc/pciinit: Show if a PCI device is 64-bit device
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--src/fw/pciinit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fw/pciinit.c b/src/fw/pciinit.c
index 55f331a..1535fa4 100644
--- a/src/fw/pciinit.c
+++ b/src/fw/pciinit.c
@@ -1148,9 +1148,10 @@ pci_region_map_one_entry(struct pci_region_entry *entry, u64 addr)
{
if (entry->bar >= 0) {
dprintf(1, "PCI: map device bdf=%pP"
- " bar %d, addr %08llx, size %08llx [%d: %s]\n",
+ " bar %d, addr %08llx, size %08llx [%d: %s], 64bit:%d\n",
entry->dev,
- entry->bar, addr, entry->size, entry->type, region_type_name[entry->type]);
+ entry->bar, addr, entry->size, entry->type,
+ region_type_name[entry->type], entry->is64);
pci_set_io_region_addr(entry->dev, entry->bar, addr, entry->is64);
return;