[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150320213108.GB25405@dtor-ws>
Date: Fri, 20 Mar 2015 14:31:08 -0700
From: Dmitry Torokhov <dtor@...gle.com>
To: Arun Ramamurthy <arun.ramamurthy@...adcom.com>
Cc: Kishon Vijay Abraham I <kishon@...com>,
Rob Herring <robh+dt@...nel.org>,
Pawel Moll <pawel.moll@....com>,
Mark Rutland <mark.rutland@....com>,
Ian Campbell <ijc+devicetree@...lion.org.uk>,
Kumar Gala <galak@...eaurora.org>,
Arnd Bergmann <arnd@...db.de>, devicetree@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org,
bcm-kernel-feedback-list@...adcom.com,
linux-kernel@...r.kernel.org, Anatol Pomazau <anatol@...gle.com>,
Jonathan Richardson <jonathar@...adcom.com>,
Scott Branden <sbranden@...adcom.com>,
Ray Jui <rjui@...adcom.com>
Subject: Re: [PATCH v1 1/3] phy: phy-core: allow specifying supply at port
level
Hi Arun,
On Fri, Mar 20, 2015 at 02:25:25PM -0700, Arun Ramamurthy wrote:
> Multi-port phy's may have per-port power supplies. Let's change phy core
> to first attempt to look up the supply at the port level, and then, if
> not found, check parent device.
>
> Reviewed-by: Ray Jui <rjui@...adcom.com>
> Reviewed-by: Scott Branden <sbranden@...adcom.com>
> Signed-off-by: Dmitry Torokhov <dtor@...omium.org>
> Signed-off-by: Arun Ramamurthy <arun.ramamurthy@...adcom.com>
>
This should have had:
From: Dmitry Torokhov <dtor@...omium.org>
as first line of the body of e-mail as the patch was authored by me.
Thanks.
---
> drivers/phy/phy-core.c | 30 ++++++++++++++++++++----------
> 1 file changed, 20 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c
> index a12d353..b43bb6b 100644
> --- a/drivers/phy/phy-core.c
> +++ b/drivers/phy/phy-core.c
> @@ -650,16 +650,6 @@ struct phy *phy_create(struct device *dev, struct device_node *node,
> goto free_phy;
> }
>
> - /* phy-supply */
> - phy->pwr = regulator_get_optional(dev, "phy");
> - if (IS_ERR(phy->pwr)) {
> - if (PTR_ERR(phy->pwr) == -EPROBE_DEFER) {
> - ret = -EPROBE_DEFER;
> - goto free_ida;
> - }
> - phy->pwr = NULL;
> - }
> -
> device_initialize(&phy->dev);
> mutex_init(&phy->mutex);
>
> @@ -673,6 +663,26 @@ struct phy *phy_create(struct device *dev, struct device_node *node,
> if (ret)
> goto put_dev;
>
> + /*
> + * Locate phy-supply. We first try individual port and then,
> + * if supply is not found, try parent device.
> + */
> + phy->pwr = regulator_get_optional(&phy->dev, "phy");
> + if (IS_ERR(phy->pwr)) {
> + ret = PTR_ERR(phy->pwr);
> + if (ret == -EPROBE_DEFER)
> + goto free_ida;
> +
> + phy->pwr = regulator_get_optional(phy->dev.parent, "phy");
> + if (IS_ERR(phy->pwr)) {
> + ret = PTR_ERR(phy->pwr);
> + if (ret == -EPROBE_DEFER)
> + goto free_ida;
> +
> + phy->pwr = NULL;
> + }
> + }
> +
> ret = device_add(&phy->dev);
> if (ret)
> goto put_dev;
> --
> 2.3.2
>
--
Dmitry
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists