From: Alexandre Bailon <abailon@baylibre.com>
To: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>,
khilman@baylibre.com, robh+dt@kernel.org, b-liu@ti.com
Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Petr Kulhavy <petr@barix.com>
Subject: Re: [PATCH 3/4] usb: musb: da8xx: Add DT support for the DA8xx driver
Date: Wed, 26 Oct 2016 11:31:18 +0200 [thread overview]
Message-ID: <5ae4c10c-a0a3-3cd7-d30a-4bae6920b4af@baylibre.com> (raw)
In-Reply-To: <82a39c63-8486-de00-3a0f-8d9d267b6404@cogentembedded.com>
On 10/25/2016 07:38 PM, Sergei Shtylyov wrote:
> Hello.
>
> On 10/25/2016 05:39 PM, Alexandre Bailon wrote:
>
>> From: Petr Kulhavy <petr@barix.com>
>>
>> This adds DT support for TI DA8xx/OMAP-L1x/AM17xx/AM18xx MUSB driver
>>
>> Signed-off-by: Petr Kulhavy <petr@barix.com>
>> Signed-off-by: Alexandre Bailon <abailon@baylibre.com>
>> ---
>> drivers/usb/musb/da8xx.c | 76
>> ++++++++++++++++++++++++++++++++++++++++++------
>> 1 file changed, 67 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c
>> index 210b7e4..d465087 100644
>> --- a/drivers/usb/musb/da8xx.c
>> +++ b/drivers/usb/musb/da8xx.c
>> @@ -6,6 +6,9 @@
>> * Based on the DaVinci "glue layer" code.
>> * Copyright (C) 2005-2006 by Texas Instruments
>> *
>> + * DT support
>> + * Copyright (c) 2016 Petr Kulhavy <petr@barix.com>
>> + *
>> * This file is part of the Inventra Controller Driver for Linux.
>> *
>> * The Inventra Controller Driver for Linux is free software; you
> [...]
>> @@ -499,15 +537,21 @@ static int da8xx_probe(struct platform_device
>> *pdev)
>> memset(musb_resources, 0x00, sizeof(*musb_resources) *
>> ARRAY_SIZE(musb_resources));
>>
>> - musb_resources[0].name = pdev->resource[0].name;
>> - musb_resources[0].start = pdev->resource[0].start;
>> - musb_resources[0].end = pdev->resource[0].end;
>> - musb_resources[0].flags = pdev->resource[0].flags;
>> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>> + if (!res) {
>> + dev_err(&pdev->dev, "failed to get memory.\n");
>> + ret = -EINVAL;
>> + goto err_unregister_usb_phy;
>> + }
>> + musb_resources[0] = *res;
>
> What does this change have to do with the DT conversion?
Nothing. I will remove it.
>
>>
>> - musb_resources[1].name = pdev->resource[1].name;
>> - musb_resources[1].start = pdev->resource[1].start;
>> - musb_resources[1].end = pdev->resource[1].end;
>> - musb_resources[1].flags = pdev->resource[1].flags;
>> + res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
>> + if (!res) {
>> + dev_err(&pdev->dev, "failed to get irq.\n");
>> + ret = -EINVAL;
>> + goto err_unregister_usb_phy;
>> + }
>> + musb_resources[1] = *res;
>
> And this?
> I'm also concerned that you'd copy the resource linkage fields which
> the existing code avoids...
>
> [...]
>
> MBR, Sergei
>
next prev parent reply other threads:[~2016-10-26 9:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-25 14:39 [PATCH 0/4] Add DT support for DA8xx Alexandre Bailon
2016-10-25 14:39 ` [PATCH 1/4] dt/bindings: Add binding for the DA8xx MUSB driver Alexandre Bailon
2016-10-25 14:39 ` [PATCH 2/4] usb: musb: core: added helper function for parsing DT Alexandre Bailon
2016-10-25 14:39 ` [PATCH 3/4] usb: musb: da8xx: Add DT support for the DA8xx driver Alexandre Bailon
2016-10-25 17:38 ` Sergei Shtylyov
2016-10-26 9:31 ` Alexandre Bailon [this message]
2016-10-25 14:39 ` [PATCH 4/4] ARM: dts: da850: Add the usb otg device node Alexandre Bailon
2016-10-25 19:29 ` David Lechner
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=5ae4c10c-a0a3-3cd7-d30a-4bae6920b4af@baylibre.com \
--to=abailon@baylibre.com \
--cc=b-liu@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=khilman@baylibre.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=petr@barix.com \
--cc=robh+dt@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®