commit | 9a66572eb371cc725ad47b1698c634cec6a425e2 | [log] [tgz] |
---|---|---|
author | Sean Anderson <seanga2@gmail.com> | Sat Jan 15 17:25:04 2022 -0500 |
committer | Sean Anderson <seanga2@gmail.com> | Wed Mar 30 13:02:55 2022 -0400 |
tree | 1f6eb51df9cbb9da87a208b5f1c46a1d2d4797af | |
parent | e0e814201cb23acb0f89e1bb34c37542cb78dc01 [diff] |
clk: Make clk_free return void Most callers of this function do not check the return value, and it is unclear what action they should take if it fails. If a function is freeing multiple clocks, it should not stop just because the first one failed. Since the callbacks can no longer fail, just convert the return type to void. Signed-off-by: Sean Anderson <seanga2@gmail.com> Link: https://lore.kernel.org/r/20220115222504.617013-8-seanga2@gmail.com