Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1420578 > unrolled thread

Re: [PATCH 1/6] clk: Add missing clk_get_sys() stub

Started byDaniel Lezcano <daniel.lezcano@linaro.org>
First post2016-06-13 10:20 +0200
Last post2016-06-13 10:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH 1/6] clk: Add missing clk_get_sys() stub Daniel Lezcano <daniel.lezcano@linaro.org> - 2016-06-13 10:20 +0200

#1420578 — Re: [PATCH 1/6] clk: Add missing clk_get_sys() stub

FromDaniel Lezcano <daniel.lezcano@linaro.org>
Date2016-06-13 10:20 +0200
SubjectRe: [PATCH 1/6] clk: Add missing clk_get_sys() stub
Message-ID<rJvgd-3EL-21@gated-at.bofh.it>
On 06/02/2016 11:41 PM, Daniel Lezcano wrote:
> 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>
> ---

Hi,

is this patch fine ? Can I pick it through my tree ?

Thanks.

   -- Daniel


>   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. */
>


-- 
  <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web