From: Hal Feng Date: Mon, 1 Sep 2025 08:24:18 +0000 (+0800) Subject: pcie: starfive: Remove the redundant print of probe success X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb1a70a856a53a435c7bb75d211ec51fa2855011;p=thirdparty%2Fu-boot.git pcie: starfive: Remove the redundant print of probe success The dev_err() is used incorrectly and we don't need the driver to state probe success. Signed-off-by: Hal Feng Reviewed-by: Leo Yu-Chi Liang --- diff --git a/drivers/pci/pcie_starfive_jh7110.c b/drivers/pci/pcie_starfive_jh7110.c index 51aca7359ff..0908ae16b67 100644 --- a/drivers/pci/pcie_starfive_jh7110.c +++ b/drivers/pci/pcie_starfive_jh7110.c @@ -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; }