All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Axel Lin <axel.lin@ingics.com>
Cc: Kishon Vijay Abraham I <kishon@ti.com>,
	Gabriel FERNANDEZ <gabriel.fernandez@st.com>,
	Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] phy: core: Check requested PHY status in _of_phy_get()
Date: Tue, 7 Apr 2015 07:38:00 +0100	[thread overview]
Message-ID: <20150407063800.GA3461@x1> (raw)
In-Reply-To: <1428380618.17119.1.camel@phoenix>

On Tue, 07 Apr 2015, Axel Lin wrote:

> This is a common checking in various drivers, so move the checking to
> _of_phy_get().
> 
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
> v2: Fixup the error patch. It needs to call module_put if Requested PHY is
>     disabled.
>  drivers/phy/phy-core.c      | 12 ++++++++++--
>  drivers/phy/phy-miphy28lp.c |  5 -----
>  drivers/phy/phy-miphy365x.c |  5 -----

Acked-by: Lee Jones <lee.jones@linaro.org>

>  drivers/phy/phy-rcar-gen2.c |  5 -----
>  4 files changed, 10 insertions(+), 17 deletions(-)
> 
> diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c
> index 3791838f..f7403de 100644
> --- a/drivers/phy/phy-core.c
> +++ b/drivers/phy/phy-core.c
> @@ -367,13 +367,21 @@ static struct phy *_of_phy_get(struct device_node *np, int index)
>  	phy_provider = of_phy_provider_lookup(args.np);
>  	if (IS_ERR(phy_provider) || !try_module_get(phy_provider->owner)) {
>  		phy = ERR_PTR(-EPROBE_DEFER);
> -		goto err0;
> +		goto out_unlock;
> +	}
> +
> +	if (!of_device_is_available(args.np)) {
> +		dev_warn(phy_provider->dev, "Requested PHY is disabled\n");
> +		phy = ERR_PTR(-ENODEV);
> +		goto out_put_module;
>  	}
>  
>  	phy = phy_provider->of_xlate(phy_provider->dev, &args);
> +
> +out_put_module:
>  	module_put(phy_provider->owner);
>  
> -err0:
> +out_unlock:
>  	mutex_unlock(&phy_provider_mutex);
>  	of_node_put(args.np);
>  
> diff --git a/drivers/phy/phy-miphy28lp.c b/drivers/phy/phy-miphy28lp.c
> index 9334352..cc87b3f 100644
> --- a/drivers/phy/phy-miphy28lp.c
> +++ b/drivers/phy/phy-miphy28lp.c
> @@ -1107,11 +1107,6 @@ static struct phy *miphy28lp_xlate(struct device *dev,
>  	struct device_node *phynode = args->np;
>  	int ret, index = 0;
>  
> -	if (!of_device_is_available(phynode)) {
> -		dev_warn(dev, "Requested PHY is disabled\n");
> -		return ERR_PTR(-ENODEV);
> -	}
> -
>  	if (args->args_count != 1) {
>  		dev_err(dev, "Invalid number of cells in 'phy' property\n");
>  		return ERR_PTR(-EINVAL);
> diff --git a/drivers/phy/phy-miphy365x.c b/drivers/phy/phy-miphy365x.c
> index 51b459d..d29b332 100644
> --- a/drivers/phy/phy-miphy365x.c
> +++ b/drivers/phy/phy-miphy365x.c
> @@ -476,11 +476,6 @@ static struct phy *miphy365x_xlate(struct device *dev,
>  	struct device_node *phynode = args->np;
>  	int ret, index;
>  
> -	if (!of_device_is_available(phynode)) {
> -		dev_warn(dev, "Requested PHY is disabled\n");
> -		return ERR_PTR(-ENODEV);
> -	}
> -
>  	if (args->args_count != 1) {
>  		dev_err(dev, "Invalid number of cells in 'phy' property\n");
>  		return ERR_PTR(-EINVAL);
> diff --git a/drivers/phy/phy-rcar-gen2.c b/drivers/phy/phy-rcar-gen2.c
> index 778276a..f47bfd8 100644
> --- a/drivers/phy/phy-rcar-gen2.c
> +++ b/drivers/phy/phy-rcar-gen2.c
> @@ -206,11 +206,6 @@ static struct phy *rcar_gen2_phy_xlate(struct device *dev,
>  	struct device_node *np = args->np;
>  	int i;
>  
> -	if (!of_device_is_available(np)) {
> -		dev_warn(dev, "Requested PHY is disabled\n");
> -		return ERR_PTR(-ENODEV);
> -	}
> -
>  	drv = dev_get_drvdata(dev);
>  	if (!drv)
>  		return ERR_PTR(-EINVAL);

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

      reply	other threads:[~2015-04-07  6:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-07  4:23 [PATCH v2] phy: core: Check requested PHY status in _of_phy_get() Axel Lin
2015-04-07  6:38 ` Lee Jones [this message]

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=20150407063800.GA3461@x1 \
    --to=lee.jones@linaro.org \
    --cc=axel.lin@ingics.com \
    --cc=gabriel.fernandez@st.com \
    --cc=kishon@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sergei.shtylyov@cogentembedded.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.