projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17ad466
)
soc: ti: pruss: Correct the pruss_clk_init error trace text
author
Suman Anna
<s-anna@ti.com>
Mon, 25 Jan 2021 04:51:37 +0000
(20:51 -0800)
committer
Santosh Shilimkar
<santosh.shilimkar@oracle.com>
Mon, 25 Jan 2021 04:51:37 +0000
(20:51 -0800)
The pruss_clk_init() function can register more than one clock.
Correct the existing misleading error trace upon a failure within
this function.
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
drivers/soc/ti/pruss.c
patch
|
blob
|
history
diff --git
a/drivers/soc/ti/pruss.c
b/drivers/soc/ti/pruss.c
index 5d6e7132a5c4141ac6f1132e908689cddf5430af..1d6890134312866d1e3a8c442d1354795386d546 100644
(file)
--- a/
drivers/soc/ti/pruss.c
+++ b/
drivers/soc/ti/pruss.c
@@
-273,7
+273,7
@@
static int pruss_probe(struct platform_device *pdev)
ret = pruss_clk_init(pruss, child);
if (ret) {
- dev_err(dev, "
failed to setup coreclk-mux\n"
);
+ dev_err(dev, "
pruss_clk_init failed, ret = %d\n", ret
);
goto node_put;
}