]> git.baikalelectronics.ru Git - uboot.git/commit
clk: Make rfree return void
authorSean Anderson <seanga2@gmail.com>
Sat, 15 Jan 2022 22:24:58 +0000 (17:24 -0500)
committerSean Anderson <seanga2@gmail.com>
Wed, 30 Mar 2022 17:02:55 +0000 (13:02 -0400)
commitbceaee08b27a93c13da953db695c1b6d288549d5
treea89503f0d871402173c7783cee3e59c8dac3f886
parent485829082b1925c251b62de4099ebdd27b406b8a
clk: Make rfree return void

When freeing a clock there is not much we can do if there is an error, and
most callers do not actually check the return value. Even e.g. checking to
make sure that clk->id is valid should have been done in request() in the
first place (unless someone is messing with the driver behind our back).
Just return void and don't bother returning an error.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/r/20220115222504.617013-2-seanga2@gmail.com
drivers/clk/clk-uclass.c
drivers/clk/clk_sandbox.c
include/clk-uclass.h