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:
80a3c2f
)
Revert "clk: Return value calculated by ERR_PTR"
author
Tom Rini
<trini@konsulko.com>
Tue, 28 Oct 2025 19:24:44 +0000
(13:24 -0600)
committer
Tom Rini
<trini@konsulko.com>
Tue, 28 Oct 2025 19:27:27 +0000
(13:27 -0600)
This reverts commit
644b4650ee57c429bede77f44752cc867dac0e00
.
While the intention of the above commit is correct, it leads to test
failures in CI that need to be addressed at the same time.
Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/clk/clk-uclass.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk-uclass.c
b/drivers/clk/clk-uclass.c
index
dc01f61
..
3dbe1ce
100644
(file)
--- a/
drivers/clk/clk-uclass.c
+++ b/
drivers/clk/clk-uclass.c
@@
-199,7
+199,7
@@
static struct clk *clk_set_default_get_by_id(struct clk *clk)
if (ret) {
debug("%s(): could not get parent clock pointer, id %lu\n",
__func__, clk->id);
-
return
ERR_PTR(ret);
+ ERR_PTR(ret);
}
}