projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c243dd
)
clk: Fix error message in clk_get_bulk
author
Jan Kiszka
<jan.kiszka@siemens.com>
Sat, 9 Mar 2024 12:27:09 +0000
(13:27 +0100)
committer
Tom Rini
<trini@konsulko.com>
Thu, 1 Aug 2024 21:33:14 +0000
(15:33 -0600)
Fix a logical inversion of the printed text.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Sean Anderson <seanga2@gmail.com>
drivers/clk/clk-uclass.c
patch
|
blob
|
history
diff --git
a/drivers/clk/clk-uclass.c
b/drivers/clk/clk-uclass.c
index c48a62ba099bc5e23e14285f599212ebf491f97b..896a0f3d302a390d4ea0f6b468e25815641ec311 100644
(file)
--- a/
drivers/clk/clk-uclass.c
+++ b/
drivers/clk/clk-uclass.c
@@
-178,7
+178,7
@@
int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk)
bulk_get_err:
err = clk_release_all(bulk->clks, bulk->count);
if (err)
- debug("%s: could release all clocks for %p\n",
+ debug("%s: could
not
release all clocks for %p\n",
__func__, dev);
return ret;