]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
pci: correct function name in message
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 27 Jul 2023 16:50:14 +0000 (18:50 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 8 Aug 2023 21:41:52 +0000 (17:41 -0400)
If an error message contains a function name, it should match the name of
the function throwing the message.

Fixes: 7739d93d8288 ("pci: Match region flags using a mask")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/pci/pci-uclass.c

index 632c1a63cfce99c9e657268197ea7a8f9cfc894d..7f3d6ddf91c91247e3dda9c59261e1f8a82c12c8 100644 (file)
@@ -1446,7 +1446,7 @@ phys_addr_t dm_pci_bus_to_phys(struct udevice *dev, pci_addr_t bus_addr,
                return res->phys_start + offset;
        }
 
-       puts("pci_hose_bus_to_phys: invalid physical address\n");
+       puts("dm_pci_bus_to_phys: invalid physical address\n");
        return 0;
 }
 
@@ -1486,7 +1486,7 @@ pci_addr_t dm_pci_phys_to_bus(struct udevice *dev, phys_addr_t phys_addr,
                return res->bus_start + offset;
        }
 
-       puts("pci_hose_phys_to_bus: invalid physical address\n");
+       puts("dm_pci_phys_to_bus: invalid physical address\n");
        return 0;
 }