linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] clk: Add missing clk_get_sys() stub
@ 2016-06-02 21:41 Daniel Lezcano
  2016-06-02 21:41 ` [PATCH 2/6] clocksource/drivers/bcm_kona: Remove useless header <asm/mach/time.h> Daniel Lezcano
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Daniel Lezcano @ 2016-06-02 21:41 UTC (permalink / raw)
  To: daniel.lezcano, tglx; +Cc: linux-kernel, Russell King, open list:CLK API

When compiling with the COMPILE_TEST option set, the clps711x does not
compile because of the clk_get_sys() noop stub missing.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 include/linux/clk.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/linux/clk.h b/include/linux/clk.h
index 0df4a51..834179f 100644
--- a/include/linux/clk.h
+++ b/include/linux/clk.h
@@ -461,6 +461,10 @@ static inline struct clk *clk_get_parent(struct clk *clk)
 	return NULL;
 }
 
+static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
+{
+	return NULL;
+}
 #endif
 
 /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
-- 
1.9.1

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

end of thread, other threads:[~2016-06-20 21:19 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-02 21:41 [PATCH 1/6] clk: Add missing clk_get_sys() stub Daniel Lezcano
2016-06-02 21:41 ` [PATCH 2/6] clocksource/drivers/bcm_kona: Remove useless header <asm/mach/time.h> Daniel Lezcano
2016-06-02 21:41 ` [PATCH 3/6] clocksource/drivers/bcm2835: Add the COMPILE_TEST option Daniel Lezcano
2016-06-02 21:41 ` [PATCH 4/6] clocksource/drivers/armv7m_systick: " Daniel Lezcano
2016-06-03  5:14   ` kbuild test robot
2016-06-02 21:41 ` [PATCH 5/6] clocksource/drivers/bcm_kona: " Daniel Lezcano
2016-06-02 21:41 ` [PATCH 6/6] clocksource/drivers/clps_711x: " Daniel Lezcano
2016-06-06  7:19 ` [PATCH 1/6] clk: Add missing clk_get_sys() stub Daniel Lezcano
2016-06-13  8:18 ` Daniel Lezcano
2016-06-20 21:18 ` Michael Turquette

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).