diff options
author | Maxime Ripard <maxime@cerno.tech> | 2023-05-05 13:25:03 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2023-06-09 03:01:04 +0200 |
commit | ed046ac74da0b5602566073023a1519b5ae657b7 (patch) | |
tree | efa3f10a00185499e1b570120e9b2432831d9561 /drivers/clk/clk.c | |
parent | Linux 6.4-rc1 (diff) | |
download | linux-ed046ac74da0b5602566073023a1519b5ae657b7.tar.xz linux-ed046ac74da0b5602566073023a1519b5ae657b7.zip |
clk: Export clk_hw_forward_rate_request()
Commit 262ca38f4b6e ("clk: Stop forwarding clk_rate_requests to the
parent") introduced the public clk_hw_forward_rate_request() function,
but didn't export the symbol. Make sure it's the case.
Fixes: 262ca38f4b6e ("clk: Stop forwarding clk_rate_requests to the parent")
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20221018-clk-range-checks-fixes-v4-1-971d5077e7d2@cerno.tech
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 27c30a533759..e495dd7a1eae 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -1549,6 +1549,7 @@ void clk_hw_forward_rate_request(const struct clk_hw *hw, parent->core, req, parent_rate); } +EXPORT_SYMBOL_GPL(clk_hw_forward_rate_request); static bool clk_core_can_round(struct clk_core * const core) { |