clk: Provide !COMMON_CLK dummy for devm_clk_rate_exclusive_get()
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 27 Mar 2024 07:33:10 +0000 (08:33 +0100)
committerStephen Boyd <sboyd@kernel.org>
Thu, 28 Mar 2024 22:35:38 +0000 (15:35 -0700)
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: kernel 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: Uwe 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: Stephen Boyd <sboyd@kernel.org>
include/linux/clk.h

index 00623f4de5e195d5a4b880db633b1bfd335f34fc..0fa56d672532157290264c8dfa0a79dab94657bb 100644 (file)
@@ -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