git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
686b48a
)
pcie: starfive: Remove the redundant print of probe success
author
Hal Feng
<hal.feng@starfivetech.com>
Mon, 1 Sep 2025 08:24:18 +0000
(16:24 +0800)
committer
Leo 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
patch
|
blob
|
history
diff --git
a/drivers/pci/pcie_starfive_jh7110.c
b/drivers/pci/pcie_starfive_jh7110.c
index
51aca73
..
0908ae1
100644
(file)
--- 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;
}