Commit b81ea968 authored by Daniel Lezcano's avatar Daniel Lezcano

clk: Add missing clk_get_sys() stub

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: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: default avatarMichael Turquette <mturquette@baylibre.com>
parent 177cf6e5
...@@ -461,6 +461,10 @@ static inline struct clk *clk_get_parent(struct clk *clk) ...@@ -461,6 +461,10 @@ static inline struct clk *clk_get_parent(struct clk *clk)
return NULL; return NULL;
} }
static inline struct clk *clk_get_sys(const char *dev_id, const char *con_id)
{
return NULL;
}
#endif #endif
/* clk_prepare_enable helps cases using clk_enable in non-atomic context. */ /* clk_prepare_enable helps cases using clk_enable in non-atomic context. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment