All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Artur Świgoń" <a.swigon@samsung.com>
To: Georgi Djakov <georgi.djakov@linaro.org>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-samsung-soc@vger.kernel.org
Cc: cw00.choi@samsung.com, b.zolnierkie@samsung.com,
	m.szyprowski@samsung.com, krzk@kernel.org
Subject: Re: [PATCH v4 1/3] interconnect: Export of_icc_get_from_provider()
Date: Fri, 24 Jan 2020 12:22:29 +0100	[thread overview]
Message-ID: <6c41f75456d4c9347414b94215162d81acf4b84a.camel@samsung.com> (raw)
In-Reply-To: <45e28d51-27db-2faa-d633-3a3d857ecdc9@linaro.org>

Hi,

On Thu, 2020-01-23 at 11:21 +0200, Georgi Djakov wrote:
> Hi Artur,
> 
> On 1/16/20 16:42, Artur Świgoń wrote:
> > This patch makes the above function public (for use in exynos-bus devfreq
> > driver).
> > 
> > Signed-off-by: Artur Świgoń <a.swigon@samsung.com>
> > Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>
> > Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
> > ---
> >  drivers/interconnect/core.c           | 3 ++-
> >  include/linux/interconnect-provider.h | 6 ++++++
> >  2 files changed, 8 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/interconnect/core.c b/drivers/interconnect/core.c
> > index f277e467156f..0be1764d3528 100644
> > --- a/drivers/interconnect/core.c
> > +++ b/drivers/interconnect/core.c
> > @@ -330,7 +330,7 @@ EXPORT_SYMBOL_GPL(of_icc_xlate_onecell);
> >   * Returns a valid pointer to struct icc_node on success or ERR_PTR()
> >   * on failure.
> >   */
> > -static struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec)
> > +struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec)
> >  {
> >  	struct icc_node *node = ERR_PTR(-EPROBE_DEFER);
> >  	struct icc_provider *provider;
> > @@ -349,6 +349,7 @@ static struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec)
> >  
> >  	return node;
> >  }
> > +EXPORT_SYMBOL_GPL(of_icc_get_from_provider);
> >  
> >  /**
> >   * of_icc_get() - get a path handle from a DT node based on name
> > diff --git a/include/linux/interconnect-provider.h b/include/linux/interconnect-provider.h
> > index 0c494534b4d3..cc965b8fab53 100644
> > --- a/include/linux/interconnect-provider.h
> > +++ b/include/linux/interconnect-provider.h
> > @@ -103,6 +103,7 @@ void icc_node_del(struct icc_node *node);
> >  int icc_nodes_remove(struct icc_provider *provider);
> >  int icc_provider_add(struct icc_provider *provider);
> >  int icc_provider_del(struct icc_provider *provider);
> > +struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec);
> >  
> >  #else
> >  
> > @@ -154,6 +155,11 @@ static inline int icc_provider_del(struct icc_provider *provider)
> >  	return -ENOTSUPP;
> >  }
> >  
> > +struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec)
> 
> Please make this static inline, as we may see a warning in some configurations:

Sure, will fix.

> In file included from drivers/devfreq/exynos-bus.c:18:
> ./include/linux/interconnect-provider.h:160:18: warning: no previous prototype
> for ‘of_icc_get_from_provider’ [-Wmissing-prototypes]
>   160 | struct icc_node *of_icc_get_from_provider(struct of_phandle_args *spec)
>       |                  ^~~~~~~~~~~~~~~~~~~~~~~~
> 
> > +{
> > +	return ERR_PTR(-ENOTSUPP);
> > +}
> > +
> >  #endif /* CONFIG_INTERCONNECT */
> >  
> >  #endif /* __LINUX_INTERCONNECT_PROVIDER_H */
> > 

-- 
Artur Świgoń
Samsung R&D Institute Poland
Samsung Electronics



  reply	other threads:[~2020-01-24 11:22 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20200116144241eucas1p226c1d7fc2fad5bd1b9fb6d0fb1b22bff@eucas1p2.samsung.com>
2020-01-16 14:41 ` [PATCH v4 0/3] interconnect: Support Samsung Exynos use-case Artur Świgoń
     [not found]   ` <CGME20200116144241eucas1p18dcf099873015e955d71d90712bbe9e0@eucas1p1.samsung.com>
2020-01-16 14:42     ` [PATCH v4 1/3] interconnect: Export of_icc_get_from_provider() Artur Świgoń
2020-01-23  9:21       ` Georgi Djakov
2020-01-24 11:22         ` Artur Świgoń [this message]
     [not found]   ` <CGME20200116144242eucas1p2bf8b4df91355974c8c96778f4ec117f7@eucas1p2.samsung.com>
2020-01-16 14:42     ` [PATCH v4 2/3] interconnect: Relax requirement in of_icc_get_from_provider() Artur Świgoń
2020-01-17  5:24       ` Chanwoo Choi
     [not found]   ` <CGME20200116144242eucas1p1b66d8ca0d111f140c48b80c5064ca4ff@eucas1p1.samsung.com>
2020-01-16 14:42     ` [PATCH v4 3/3] interconnect: Allow inter-provider pairs to be configured Artur Świgoń
2020-01-17  5:31   ` [PATCH v4 0/3] interconnect: Support Samsung Exynos use-case Chanwoo Choi
2020-01-17  6:10     ` Artur Świgoń
2020-01-17  7:14       ` Chanwoo Choi

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=6c41f75456d4c9347414b94215162d81acf4b84a.camel@samsung.com \
    --to=a.swigon@samsung.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=cw00.choi@samsung.com \
    --cc=georgi.djakov@linaro.org \
    --cc=krzk@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    /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.