mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH master] clk: support inclusion of clk-provider.h in !COMMON_CLK code
@ 2024-07-01 18:12 Ahmad Fatoum
  2024-07-02  6:33 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2024-07-01 18:12 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

Most of the file is macros, but the little C code there is fails to
compile when built with !COMMON_CLK due to struct clk_div_table and
clk_hw_get_parent being undefined.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 include/linux/clk-provider.h | 2 ++
 include/linux/clk.h          | 6 ++++++
 2 files changed, 8 insertions(+)

diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h
index eab8305821e5..602e772a54bb 100644
--- a/include/linux/clk-provider.h
+++ b/include/linux/clk-provider.h
@@ -8,6 +8,8 @@
 
 #include <linux/clk.h>
 
+struct clk_div_table;
+
 long divider_round_rate_parent(struct clk_hw *hw, struct clk_hw *parent,
 			       unsigned long rate, unsigned long *prate,
 			       const struct clk_div_table *table,
diff --git a/include/linux/clk.h b/include/linux/clk.h
index bd107962fb88..ae03dcfdb2a2 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -187,6 +187,12 @@ static inline struct clk *clk_get_parent(struct clk *clk)
 	return NULL;
 }
 
+static inline struct clk_hw *clk_hw_get_parent(struct clk_hw *hw)
+
+{
+	return NULL;
+}
+
 static inline int clk_hw_get_parent_index(struct clk_hw *hw)
 {
 	return -EINVAL;
-- 
2.39.2




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH master] clk: support inclusion of clk-provider.h in !COMMON_CLK code
  2024-07-01 18:12 [PATCH master] clk: support inclusion of clk-provider.h in !COMMON_CLK code Ahmad Fatoum
@ 2024-07-02  6:33 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2024-07-02  6:33 UTC (permalink / raw)
  To: barebox, Ahmad Fatoum


On Mon, 01 Jul 2024 20:12:30 +0200, Ahmad Fatoum wrote:
> Most of the file is macros, but the little C code there is fails to
> compile when built with !COMMON_CLK due to struct clk_div_table and
> clk_hw_get_parent being undefined.
> 
> 

Applied, thanks!

[1/1] clk: support inclusion of clk-provider.h in !COMMON_CLK code
      https://git.pengutronix.de/cgit/barebox/commit/?id=0156b9deb454 (link may not be stable)

Best regards,
-- 
Sascha Hauer <s.hauer@pengutronix.de>




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-07-02  6:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-01 18:12 [PATCH master] clk: support inclusion of clk-provider.h in !COMMON_CLK code Ahmad Fatoum
2024-07-02  6:33 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox