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 51aca73..0908ae1 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;
 }