From: kishon@ti.com (Kishon Vijay Abraham I)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RESEND v4 3/8] phy: sunxi: Rework phy initialization
Date: Wed, 14 May 2014 11:18:51 +0530 [thread overview]
Message-ID: <537303C3.8040503@ti.com> (raw)
In-Reply-To: <1399995862-17788-4-git-send-email-maxime.ripard@free-electrons.com>
Hi,
On Tuesday 13 May 2014 09:14 PM, Maxime Ripard wrote:
> Move the phy initialization and variables declaration to the loop itself, since
> it is where it really belongs. Also remove all the temporary variables, we can
> use the structure members directly.
>
> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
let me know if I have to queue this and the next patch in my PHY tree.
Cheers
Kishon
> ---
> drivers/phy/phy-sun4i-usb.c | 42 ++++++++++++++++++------------------------
> 1 file changed, 18 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/phy/phy-sun4i-usb.c b/drivers/phy/phy-sun4i-usb.c
> index e6e6c4ba7145..66a87d50512b 100644
> --- a/drivers/phy/phy-sun4i-usb.c
> +++ b/drivers/phy/phy-sun4i-usb.c
> @@ -224,13 +224,8 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
> struct sun4i_usb_phy_data *data;
> struct device *dev = &pdev->dev;
> struct device_node *np = dev->of_node;
> - void __iomem *pmu = NULL;
> struct phy_provider *phy_provider;
> - struct reset_control *reset;
> - struct regulator *vbus;
> struct resource *res;
> - struct phy *phy;
> - char name[16];
> int i;
>
> data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
> @@ -262,42 +257,41 @@ static int sun4i_usb_phy_probe(struct platform_device *pdev)
>
> /* Skip 0, 0 is the phy for otg which is not yet supported. */
> for (i = 1; i < data->num_phys; i++) {
> + struct sun4i_usb_phy *phy = data->phys + i;
> + char name[16];
> +
> snprintf(name, sizeof(name), "usb%d_vbus", i);
> - vbus = devm_regulator_get_optional(dev, name);
> - if (IS_ERR(vbus)) {
> - if (PTR_ERR(vbus) == -EPROBE_DEFER)
> + phy->vbus = devm_regulator_get_optional(dev, name);
> + if (IS_ERR(phy->vbus)) {
> + if (PTR_ERR(phy->vbus) == -EPROBE_DEFER)
> return -EPROBE_DEFER;
> - vbus = NULL;
> + phy->vbus = NULL;
> }
>
> snprintf(name, sizeof(name), "usb%d_reset", i);
> - reset = devm_reset_control_get(dev, name);
> - if (IS_ERR(reset)) {
> + phy->reset = devm_reset_control_get(dev, name);
> + if (IS_ERR(phy->reset)) {
> dev_err(dev, "failed to get reset %s\n", name);
> - return PTR_ERR(reset);
> + return PTR_ERR(phy->reset);
> }
>
> if (i) { /* No pmu for usbc0 */
> snprintf(name, sizeof(name), "pmu%d", i);
> res = platform_get_resource_byname(pdev,
> IORESOURCE_MEM, name);
> - pmu = devm_ioremap_resource(dev, res);
> - if (IS_ERR(pmu))
> - return PTR_ERR(pmu);
> + phy->pmu = devm_ioremap_resource(dev, res);
> + if (IS_ERR(phy->pmu))
> + return PTR_ERR(phy->pmu);
> }
>
> - phy = devm_phy_create(dev, &sun4i_usb_phy_ops, NULL);
> - if (IS_ERR(phy)) {
> + phy->phy = devm_phy_create(dev, &sun4i_usb_phy_ops, NULL);
> + if (IS_ERR(phy->phy)) {
> dev_err(dev, "failed to create PHY %d\n", i);
> - return PTR_ERR(phy);
> + return PTR_ERR(phy->phy);
> }
>
> - data->phys[i].phy = phy;
> - data->phys[i].pmu = pmu;
> - data->phys[i].vbus = vbus;
> - data->phys[i].reset = reset;
> - data->phys[i].index = i;
> - phy_set_drvdata(phy, &data->phys[i]);
> + phy->index = i;
> + phy_set_drvdata(phy->phy, &data->phys[i]);
> }
>
> dev_set_drvdata(dev, data);
>
next prev parent reply other threads:[~2014-05-14 5:48 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-13 15:44 [PATCH RESEND v4 0/8] Add Allwinner A31 USB support Maxime Ripard
2014-05-13 15:44 ` [PATCH RESEND v4 1/8] clk: sunxi: Implement A31 USB clock Maxime Ripard
2014-05-13 16:40 ` Emilio López
2014-05-13 15:44 ` [PATCH RESEND v4 2/8] ARM: sun6i: Add the USB clocks to the DTSI Maxime Ripard
2014-05-13 15:44 ` [PATCH RESEND v4 3/8] phy: sunxi: Rework phy initialization Maxime Ripard
2014-05-14 5:48 ` Kishon Vijay Abraham I [this message]
2014-05-14 6:49 ` Maxime Ripard
2014-05-15 9:44 ` Kishon Vijay Abraham I
2014-05-13 15:44 ` [PATCH RESEND v4 4/8] phy: usb: sunxi: Introduce Allwinner A31 USB PHY support Maxime Ripard
2014-05-14 8:39 ` Kishon Vijay Abraham I
2014-05-14 12:30 ` Maxime Ripard
2014-05-13 15:44 ` [PATCH RESEND v4 5/8] usb: ehci-platform: add optional reset controller retrieval Maxime Ripard
2014-05-13 15:44 ` [PATCH RESEND v4 6/8] usb: ohci-platform: Enable optional use of reset controller Maxime Ripard
2014-05-13 15:44 ` [PATCH RESEND v4 7/8] ARM: sun6i: dt: Add support for the USB controllers Maxime Ripard
2014-05-13 15:44 ` [PATCH RESEND v4 8/8] ARM: sunxi: dt: add APP4-EVB1 board support Maxime Ripard
2014-05-14 12:34 ` [PATCH RESEND v4 0/8] Add Allwinner A31 USB support Maxime Ripard
2014-05-14 16:05 ` Greg Kroah-Hartman
2014-05-15 9:14 ` Maxime Ripard
2014-05-27 22:53 ` Greg Kroah-Hartman
2014-05-28 7:47 ` Maxime Ripard
2014-05-23 18:33 ` Maxime Ripard
2014-05-23 22:19 ` Greg Kroah-Hartman
2014-05-24 15:09 ` Maxime Ripard
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=537303C3.8040503@ti.com \
--to=kishon@ti.com \
--cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).