All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mike Turquette <mturquette@linaro.org>
To: Stephen Boyd <sboyd@codeaurora.org>
Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] clk: Export more clk-provider functions
Date: Mon, 27 Jan 2014 11:52:54 -0800	[thread overview]
Message-ID: <20140127195254.4167.4380@quantum> (raw)
In-Reply-To: <1390016837-24837-1-git-send-email-sboyd@codeaurora.org>

Quoting Stephen Boyd (2014-01-17 19:47:17)
> Allow drivers to be compiled as modules by exporting more clock
> provider functions.
> 
> Reported-by: kbuild test robot <fengguang.wu@intel.com>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

I've taken this into part 2 of my pull request for 3.14.

Regards,
Mike

> ---
>  drivers/clk/clk.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index 0b27b543dacf..2e83cf643db0 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -547,16 +547,19 @@ struct clk_hw *__clk_get_hw(struct clk *clk)
>  {
>         return !clk ? NULL : clk->hw;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_hw);
>  
>  u8 __clk_get_num_parents(struct clk *clk)
>  {
>         return !clk ? 0 : clk->num_parents;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_num_parents);
>  
>  struct clk *__clk_get_parent(struct clk *clk)
>  {
>         return !clk ? NULL : clk->parent;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_parent);
>  
>  struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
>  {
> @@ -570,6 +573,7 @@ struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
>         else
>                 return clk->parents[index];
>  }
> +EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
>  
>  unsigned int __clk_get_enable_count(struct clk *clk)
>  {
> @@ -601,6 +605,7 @@ unsigned long __clk_get_rate(struct clk *clk)
>  out:
>         return ret;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_rate);
>  
>  unsigned long __clk_get_flags(struct clk *clk)
>  {
> @@ -649,6 +654,7 @@ bool __clk_is_enabled(struct clk *clk)
>  out:
>         return !!ret;
>  }
> +EXPORT_SYMBOL_GPL(__clk_is_enabled);
>  
>  static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
>  {
> @@ -740,6 +746,7 @@ out:
>  
>         return best;
>  }
> +EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
>  
>  /***        clk api        ***/
>  
> -- 
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
> 

WARNING: multiple messages have this Message-ID (diff)
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] clk: Export more clk-provider functions
Date: Mon, 27 Jan 2014 11:52:54 -0800	[thread overview]
Message-ID: <20140127195254.4167.4380@quantum> (raw)
In-Reply-To: <1390016837-24837-1-git-send-email-sboyd@codeaurora.org>

Quoting Stephen Boyd (2014-01-17 19:47:17)
> Allow drivers to be compiled as modules by exporting more clock
> provider functions.
> 
> Reported-by: kbuild test robot <fengguang.wu@intel.com>
> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>

I've taken this into part 2 of my pull request for 3.14.

Regards,
Mike

> ---
>  drivers/clk/clk.c | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index 0b27b543dacf..2e83cf643db0 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -547,16 +547,19 @@ struct clk_hw *__clk_get_hw(struct clk *clk)
>  {
>         return !clk ? NULL : clk->hw;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_hw);
>  
>  u8 __clk_get_num_parents(struct clk *clk)
>  {
>         return !clk ? 0 : clk->num_parents;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_num_parents);
>  
>  struct clk *__clk_get_parent(struct clk *clk)
>  {
>         return !clk ? NULL : clk->parent;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_parent);
>  
>  struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
>  {
> @@ -570,6 +573,7 @@ struct clk *clk_get_parent_by_index(struct clk *clk, u8 index)
>         else
>                 return clk->parents[index];
>  }
> +EXPORT_SYMBOL_GPL(clk_get_parent_by_index);
>  
>  unsigned int __clk_get_enable_count(struct clk *clk)
>  {
> @@ -601,6 +605,7 @@ unsigned long __clk_get_rate(struct clk *clk)
>  out:
>         return ret;
>  }
> +EXPORT_SYMBOL_GPL(__clk_get_rate);
>  
>  unsigned long __clk_get_flags(struct clk *clk)
>  {
> @@ -649,6 +654,7 @@ bool __clk_is_enabled(struct clk *clk)
>  out:
>         return !!ret;
>  }
> +EXPORT_SYMBOL_GPL(__clk_is_enabled);
>  
>  static struct clk *__clk_lookup_subtree(const char *name, struct clk *clk)
>  {
> @@ -740,6 +746,7 @@ out:
>  
>         return best;
>  }
> +EXPORT_SYMBOL_GPL(__clk_mux_determine_rate);
>  
>  /***        clk api        ***/
>  
> -- 
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
> 

  reply	other threads:[~2014-01-27 19:52 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-18  3:47 [PATCH] clk: Export more clk-provider functions Stephen Boyd
2014-01-18  3:47 ` Stephen Boyd
2014-01-27 19:52 ` Mike Turquette [this message]
2014-01-27 19:52   ` Mike Turquette

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140127195254.4167.4380@quantum \
    --to=mturquette@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sboyd@codeaurora.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.