Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1513830 > unrolled thread
| Started by | Axel Haslam <ahaslam@baylibre.com> |
|---|---|
| First post | 2016-11-02 13:50 +0100 |
| Last post | 2016-11-04 22:10 +0100 |
| Articles | 5 — 4 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 2/3] phy: da8xx-usb: rename the ohci device to ohci-da8xx Axel Haslam <ahaslam@baylibre.com> - 2016-11-02 13:50 +0100
Re: [PATCH 2/3] phy: da8xx-usb: rename the ohci device to ohci-da8xx David Lechner <david@lechnology.com> - 2016-11-02 22:50 +0100
Re: [PATCH 2/3] phy: da8xx-usb: rename the ohci device to ohci-da8xx Kishon Vijay Abraham I <kishon@ti.com> - 2016-11-03 18:00 +0100
Re: [PATCH 2/3] phy: da8xx-usb: rename the ohci device to ohci-da8xx Sekhar Nori <nsekhar@ti.com> - 2016-11-04 06:40 +0100
Re: [PATCH 2/3] phy: da8xx-usb: rename the ohci device to ohci-da8xx Kishon Vijay Abraham I <kishon@ti.com> - 2016-11-04 22:10 +0100
| From | Axel Haslam <ahaslam@baylibre.com> |
|---|---|
| Date | 2016-11-02 13:50 +0100 |
| Subject | [PATCH 2/3] phy: da8xx-usb: rename the ohci device to ohci-da8xx |
| Message-ID | <sz39o-6oi-11@gated-at.bofh.it> |
There is only one ohci on the da8xx series of chips,
so remove the ".0" when creating the phy. Also add
the "-da8xx" postfix to be consistent across davinci
usb drivers.
Signed-off-by: Axel Haslam <ahaslam@baylibre.com>
---
drivers/phy/phy-da8xx-usb.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/phy/phy-da8xx-usb.c b/drivers/phy/phy-da8xx-usb.c
index 32ae78c..c85fb0b 100644
--- a/drivers/phy/phy-da8xx-usb.c
+++ b/drivers/phy/phy-da8xx-usb.c
@@ -198,7 +198,8 @@ static int da8xx_usb_phy_probe(struct platform_device *pdev)
} else {
int ret;
- ret = phy_create_lookup(d_phy->usb11_phy, "usb-phy", "ohci.0");
+ ret = phy_create_lookup(d_phy->usb11_phy, "usb-phy",
+ "ohci-da8xx");
if (ret)
dev_warn(dev, "Failed to create usb11 phy lookup\n");
ret = phy_create_lookup(d_phy->usb20_phy, "usb-phy",
@@ -216,7 +217,7 @@ static int da8xx_usb_phy_remove(struct platform_device *pdev)
if (!pdev->dev.of_node) {
phy_remove_lookup(d_phy->usb20_phy, "usb-phy", "musb-da8xx");
- phy_remove_lookup(d_phy->usb11_phy, "usb-phy", "ohci.0");
+ phy_remove_lookup(d_phy->usb11_phy, "usb-phy", "ohci-da8xx");
}
return 0;
--
2.10.1
[toc] | [next] | [standalone]
| From | David Lechner <david@lechnology.com> |
|---|---|
| Date | 2016-11-02 22:50 +0100 |
| Message-ID | <szbzY-3hO-27@gated-at.bofh.it> |
| In reply to | #1513830 |
On 11/02/2016 07:44 AM, Axel Haslam wrote: > There is only one ohci on the da8xx series of chips, > so remove the ".0" when creating the phy. Also add > the "-da8xx" postfix to be consistent across davinci > usb drivers. It would be more accurate to say that the device name is being changed in the mach board configuration files, so it is being changed here in the lookup table to match the new name. > > Signed-off-by: Axel Haslam <ahaslam@baylibre.com> > ---
[toc] | [prev] | [next] | [standalone]
| From | Kishon Vijay Abraham I <kishon@ti.com> |
|---|---|
| Date | 2016-11-03 18:00 +0100 |
| Message-ID | <sztwS-6uq-25@gated-at.bofh.it> |
| In reply to | #1513830 |
On Wednesday 02 November 2016 06:14 PM, Axel Haslam wrote:
> There is only one ohci on the da8xx series of chips,
> so remove the ".0" when creating the phy. Also add
> the "-da8xx" postfix to be consistent across davinci
> usb drivers.
>
> Signed-off-by: Axel Haslam <ahaslam@baylibre.com>
Acked-by: Kishon Vijay Abraham I <kishon@ti.com>
> ---
> drivers/phy/phy-da8xx-usb.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/phy/phy-da8xx-usb.c b/drivers/phy/phy-da8xx-usb.c
> index 32ae78c..c85fb0b 100644
> --- a/drivers/phy/phy-da8xx-usb.c
> +++ b/drivers/phy/phy-da8xx-usb.c
> @@ -198,7 +198,8 @@ static int da8xx_usb_phy_probe(struct platform_device *pdev)
> } else {
> int ret;
>
> - ret = phy_create_lookup(d_phy->usb11_phy, "usb-phy", "ohci.0");
> + ret = phy_create_lookup(d_phy->usb11_phy, "usb-phy",
> + "ohci-da8xx");
> if (ret)
> dev_warn(dev, "Failed to create usb11 phy lookup\n");
> ret = phy_create_lookup(d_phy->usb20_phy, "usb-phy",
> @@ -216,7 +217,7 @@ static int da8xx_usb_phy_remove(struct platform_device *pdev)
>
> if (!pdev->dev.of_node) {
> phy_remove_lookup(d_phy->usb20_phy, "usb-phy", "musb-da8xx");
> - phy_remove_lookup(d_phy->usb11_phy, "usb-phy", "ohci.0");
> + phy_remove_lookup(d_phy->usb11_phy, "usb-phy", "ohci-da8xx");
> }
>
> return 0;
>
[toc] | [prev] | [next] | [standalone]
| From | Sekhar Nori <nsekhar@ti.com> |
|---|---|
| Date | 2016-11-04 06:40 +0100 |
| Message-ID | <szFom-5NS-3@gated-at.bofh.it> |
| In reply to | #1514696 |
Hi Kishon, On Thursday 03 November 2016 10:20 PM, Kishon Vijay Abraham I wrote: > > > On Wednesday 02 November 2016 06:14 PM, Axel Haslam wrote: >> There is only one ohci on the da8xx series of chips, >> so remove the ".0" when creating the phy. Also add >> the "-da8xx" postfix to be consistent across davinci >> usb drivers. >> >> Signed-off-by: Axel Haslam <ahaslam@baylibre.com> > > Acked-by: Kishon Vijay Abraham I <kishon@ti.com> You will have to carry this patch from your tree. I thought I can carry the entire series, but the USB patch depends on other patches that Greg has already queued. So I think its best if the individual patches go through their respective trees. Note that there is a v2 already submitted. Thanks, Sekhar
[toc] | [prev] | [next] | [standalone]
| From | Kishon Vijay Abraham I <kishon@ti.com> |
|---|---|
| Date | 2016-11-04 22:10 +0100 |
| Message-ID | <szTUm-6Y7-21@gated-at.bofh.it> |
| In reply to | #1515015 |
On Friday 04 November 2016 11:04 AM, Sekhar Nori wrote: > Hi Kishon, > > On Thursday 03 November 2016 10:20 PM, Kishon Vijay Abraham I wrote: >> >> >> On Wednesday 02 November 2016 06:14 PM, Axel Haslam wrote: >>> There is only one ohci on the da8xx series of chips, >>> so remove the ".0" when creating the phy. Also add >>> the "-da8xx" postfix to be consistent across davinci >>> usb drivers. >>> >>> Signed-off-by: Axel Haslam <ahaslam@baylibre.com> >> >> Acked-by: Kishon Vijay Abraham I <kishon@ti.com> > > You will have to carry this patch from your tree. I thought I can carry > the entire series, but the USB patch depends on other patches that Greg > has already queued. So I think its best if the individual patches go > through their respective trees. > > Note that there is a v2 already submitted. Okay. I can pick them in my tree. Thanks Kishon
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web