pci: Mark 64bit Memory BARs as such
authorPhil Sutter <phil@nwl.cc>
Wed, 3 Mar 2021 00:57:35 +0000 (01:57 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 12 Apr 2021 21:17:11 +0000 (17:17 -0400)
Just a bit more info to the reader.

Signed-off-by: Phil Sutter <phil@nwl.cc>
Reviewed-by: Stefan Roese <sr@denx.de>
drivers/pci/pci_auto.c

index da76148..05663c7 100644 (file)
@@ -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);
                }