From cb1a70a856a53a435c7bb75d211ec51fa2855011 Mon Sep 17 00:00:00 2001 From: Hal Feng Date: Mon, 1 Sep 2025 16:24:18 +0800 Subject: [PATCH] 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 --- drivers/pci/pcie_starfive_jh7110.c | 2 -- 1 file changed, 2 deletions(-) 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; } -- 2.47.3