Commit 9dca94c1 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by dinglongwei
Browse files

clk: Provide !COMMON_CLK dummy for devm_clk_rate_exclusive_get()

mainline inclusion
from mainline-v6.9-rc5
commit 7f1dd39aedfccf60772328c5b88d56dbd39954c3
category: bugfix
bugzilla: https://gitee.com/src-openeuler/kernel/issues/IACTBX
CVE: CVE-2024-40965

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=7f1dd39aedfccf60772328c5b88d56dbd39954c3



--------------------------------

To be able to compile drivers using devm_clk_rate_exclusive_get() also
on platforms without the common clk framework, add a dummy
implementation that does the same as clk_rate_exclusive_get() in that
case (i.e. nothing).

Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202403270305.ydvX9xq1-lkp@intel.com/


Fixes: b0cde62e4c54 ("clk: Add a devm variant of clk_rate_exclusive_get()")
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20240327073310.520950-2-u.kleine-koenig@pengutronix.de


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
Signed-off-by: default avatardinglongwei <dinglongwei1@huawei.com>
parent 66d62772
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -286,6 +286,11 @@ static inline int clk_rate_exclusive_get(struct clk *clk)
	return 0;
}

static inline int devm_clk_rate_exclusive_get(struct device *dev, struct clk *clk)
{
	return 0;
}

static inline void clk_rate_exclusive_put(struct clk *clk) {}

#endif