clk: Fix error message in clk_get_bulk

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>
This commit is contained in:
Jan Kiszka
2024-03-09 13:27:09 +01:00
committed by Tom Rini
parent 6c243dd5e5
commit 068c346703

View File

@@ -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;