diff options
author | Phil Sutter <phil@nwl.cc> | 2021-03-03 01:57:35 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-12 17:17:11 -0400 |
commit | a62de442e41d85b0ab682c2d51ce9d24971dd9dd (patch) | |
tree | 5daf2d371ff1cc0a5c6d2e3bb872ec0654713e8b | |
parent | 9539f71675c40485e448efb3c4e06afc8d102f94 (diff) | |
download | u-boot-a62de442e41d85b0ab682c2d51ce9d24971dd9dd.zip u-boot-a62de442e41d85b0ab682c2d51ce9d24971dd9dd.tar.gz u-boot-a62de442e41d85b0ab682c2d51ce9d24971dd9dd.tar.bz2 |
pci: Mark 64bit Memory BARs as such
Just a bit more info to the reader.
Signed-off-by: Phil Sutter <phil@nwl.cc>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | drivers/pci/pci_auto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto.c index da76148..05663c7 100644 --- a/drivers/pci/pci_auto.c +++ b/drivers/pci/pci_auto.c @@ -88,8 +88,9 @@ static void dm_pciauto_setup_device(struct udevice *dev, int bars_num, else bar_res = mem; - debug("PCI Autoconfig: BAR %d, %s, size=0x%llx, ", + debug("PCI Autoconfig: BAR %d, %s%s, size=0x%llx, ", bar_nr, bar_res == prefetch ? "Prf" : "Mem", + found_mem64 ? "64" : "", (unsigned long long)bar_size); } |