diff options
author | Sean Anderson <seanga2@gmail.com> | 2023-12-16 14:38:41 -0500 |
---|---|---|
committer | Sean Anderson <seanga2@gmail.com> | 2024-01-29 22:35:02 -0500 |
commit | 82719d3f409f93b2ce85145547c0bb91624a2c63 (patch) | |
tree | 1780fc8d4eff5137fdb2813bab9abf8b940fffda /arch/sandbox | |
parent | b500447ad6aef31de75e3e9242101ae96eceb7ca (diff) | |
download | u-boot-82719d3f409f93b2ce85145547c0bb91624a2c63.tar.gz u-boot-82719d3f409f93b2ce85145547c0bb91624a2c63.tar.bz2 u-boot-82719d3f409f93b2ce85145547c0bb91624a2c63.zip |
clk: Remove rfree
Nothing uses this function. Remove it. Since clk_free no longer does
anything, just stub it out.
Signed-off-by: Sean Anderson <seanga2@gmail.com>
Link: https://lore.kernel.org/r/20231216193843.2463779-2-seanga2@gmail.com
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/include/asm/clk.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/sandbox/include/asm/clk.h b/arch/sandbox/include/asm/clk.h index d4e04ad148..37fe49c7fc 100644 --- a/arch/sandbox/include/asm/clk.h +++ b/arch/sandbox/include/asm/clk.h @@ -182,14 +182,6 @@ int sandbox_clk_test_disable(struct udevice *dev, int id); */ int sandbox_clk_test_disable_bulk(struct udevice *dev); /** - * sandbox_clk_test_free - Ask the sandbox clock test device to free its - * clocks. - * - * @dev: The sandbox clock test (client) device. - * @return: 0 if OK, or a negative error code. - */ -int sandbox_clk_test_free(struct udevice *dev); -/** * sandbox_clk_test_release_bulk - Ask the sandbox clock test device to release * all clocks in it's clock bulk struct. * |