]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
pcie: starfive: Remove the redundant print of probe success
authorHal Feng <hal.feng@starfivetech.com>
Mon, 1 Sep 2025 08:24:18 +0000 (16:24 +0800)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Fri, 19 Sep 2025 11:12:19 +0000 (19:12 +0800)
The dev_err() is used incorrectly and we don't need the driver
to state probe success.

Signed-off-by: Hal Feng <hal.feng@starfivetech.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
drivers/pci/pcie_starfive_jh7110.c

index 51aca7359ff32b73b99e2061e9595338141e7897..0908ae16b67335e2c81762f48219a43941713ec5 100644 (file)
@@ -292,8 +292,6 @@ static int starfive_pcie_probe(struct udevice *dev)
        if (ret)
                return ret;
 
-       dev_err(dev, "Starfive PCIe bus probed.\n");
-
        return 0;
 }