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 <hal.feng@starfivetech.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
This commit is contained in:
Hal Feng 2025-09-01 16:24:18 +08:00 committed by Leo Yu-Chi Liang
parent 686b48af6d
commit cb1a70a856

View File

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