diff mbox

[1/2] usb: ehci-platform: use reset array API

Message ID 1509356120-21473-1-git-send-email-yamada.masahiro@socionext.com (mailing list archive)
State New, archived
Headers show

Commit Message

Masahiro Yamada Oct. 30, 2017, 9:35 a.m. UTC
Generic drivers like this need to control arbitrary numbers of reset
lines.  Instead of hard-coding the maximum number of resets, use the
reset array API.  It can manage a bunch of resets behind the scene.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 drivers/usb/host/ehci-platform.c | 33 +++++++++++----------------------
 1 file changed, 11 insertions(+), 22 deletions(-)

Comments

Alan Stern Nov. 1, 2017, 3:32 p.m. UTC | #1
On Mon, 30 Oct 2017, Masahiro Yamada wrote:

> Generic drivers like this need to control arbitrary numbers of reset
> lines.  Instead of hard-coding the maximum number of resets, use the
> reset array API.  It can manage a bunch of resets behind the scene.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>  drivers/usb/host/ehci-platform.c | 33 +++++++++++----------------------
>  1 file changed, 11 insertions(+), 22 deletions(-)
> 
> diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
> index f1908ea..64fd643 100644
> --- a/drivers/usb/host/ehci-platform.c
> +++ b/drivers/usb/host/ehci-platform.c
> @@ -40,12 +40,11 @@
>  
>  #define DRIVER_DESC "EHCI generic platform driver"
>  #define EHCI_MAX_CLKS 4
> -#define EHCI_MAX_RSTS 4
>  #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
>  
>  struct ehci_platform_priv {
>  	struct clk *clks[EHCI_MAX_CLKS];
> -	struct reset_control *rsts[EHCI_MAX_RSTS];
> +	struct reset_control *rsts;
>  	struct phy **phys;
>  	int num_phys;
>  	bool reset_on_resume;
> @@ -151,7 +150,7 @@ static int ehci_platform_probe(struct platform_device *dev)
>  	struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
>  	struct ehci_platform_priv *priv;
>  	struct ehci_hcd *ehci;
> -	int err, irq, phy_num, clk = 0, rst;
> +	int err, irq, phy_num, clk = 0;
>  
>  	if (usb_disabled())
>  		return -ENODEV;
> @@ -239,21 +238,13 @@ static int ehci_platform_probe(struct platform_device *dev)
>  		}
>  	}
>  
> -	for (rst = 0; rst < EHCI_MAX_RSTS; rst++) {
> -		priv->rsts[rst] = devm_reset_control_get_shared_by_index(
> -					&dev->dev, rst);
> -		if (IS_ERR(priv->rsts[rst])) {
> -			err = PTR_ERR(priv->rsts[rst]);
> -			if (err == -EPROBE_DEFER)
> -				goto err_reset;
> -			priv->rsts[rst] = NULL;
> -			break;
> -		}
> +	priv->rsts = devm_reset_control_array_get_optional_shared(&dev->dev);
> +	if (IS_ERR(priv->rsts))
> +		return PTR_ERR(priv->rsts);

You must not return.  Instead you should set err and jump to 
err_put_clks.

Alan Stern
Masahiro Yamada Nov. 1, 2017, 3:49 p.m. UTC | #2
Hi Alan,

2017-11-02 0:32 GMT+09:00 Alan Stern <stern@rowland.harvard.edu>:
> On Mon, 30 Oct 2017, Masahiro Yamada wrote:
>
>> Generic drivers like this need to control arbitrary numbers of reset
>> lines.  Instead of hard-coding the maximum number of resets, use the
>> reset array API.  It can manage a bunch of resets behind the scene.
>>
>> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
>> ---
>>  drivers/usb/host/ehci-platform.c | 33 +++++++++++----------------------
>>  1 file changed, 11 insertions(+), 22 deletions(-)
>>
>> diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
>> index f1908ea..64fd643 100644
>> --- a/drivers/usb/host/ehci-platform.c
>> +++ b/drivers/usb/host/ehci-platform.c
>> @@ -40,12 +40,11 @@
>>
>>  #define DRIVER_DESC "EHCI generic platform driver"
>>  #define EHCI_MAX_CLKS 4
>> -#define EHCI_MAX_RSTS 4
>>  #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
>>
>>  struct ehci_platform_priv {
>>       struct clk *clks[EHCI_MAX_CLKS];
>> -     struct reset_control *rsts[EHCI_MAX_RSTS];
>> +     struct reset_control *rsts;
>>       struct phy **phys;
>>       int num_phys;
>>       bool reset_on_resume;
>> @@ -151,7 +150,7 @@ static int ehci_platform_probe(struct platform_device *dev)
>>       struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
>>       struct ehci_platform_priv *priv;
>>       struct ehci_hcd *ehci;
>> -     int err, irq, phy_num, clk = 0, rst;
>> +     int err, irq, phy_num, clk = 0;
>>
>>       if (usb_disabled())
>>               return -ENODEV;
>> @@ -239,21 +238,13 @@ static int ehci_platform_probe(struct platform_device *dev)
>>               }
>>       }
>>
>> -     for (rst = 0; rst < EHCI_MAX_RSTS; rst++) {
>> -             priv->rsts[rst] = devm_reset_control_get_shared_by_index(
>> -                                     &dev->dev, rst);
>> -             if (IS_ERR(priv->rsts[rst])) {
>> -                     err = PTR_ERR(priv->rsts[rst]);
>> -                     if (err == -EPROBE_DEFER)
>> -                             goto err_reset;
>> -                     priv->rsts[rst] = NULL;
>> -                     break;
>> -             }
>> +     priv->rsts = devm_reset_control_array_get_optional_shared(&dev->dev);
>> +     if (IS_ERR(priv->rsts))
>> +             return PTR_ERR(priv->rsts);
>
> You must not return.  Instead you should set err and jump to
> err_put_clks.
>

Good catch!

Will fix.

Thank you!
diff mbox

Patch

diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
index f1908ea..64fd643 100644
--- a/drivers/usb/host/ehci-platform.c
+++ b/drivers/usb/host/ehci-platform.c
@@ -40,12 +40,11 @@ 
 
 #define DRIVER_DESC "EHCI generic platform driver"
 #define EHCI_MAX_CLKS 4
-#define EHCI_MAX_RSTS 4
 #define hcd_to_ehci_priv(h) ((struct ehci_platform_priv *)hcd_to_ehci(h)->priv)
 
 struct ehci_platform_priv {
 	struct clk *clks[EHCI_MAX_CLKS];
-	struct reset_control *rsts[EHCI_MAX_RSTS];
+	struct reset_control *rsts;
 	struct phy **phys;
 	int num_phys;
 	bool reset_on_resume;
@@ -151,7 +150,7 @@  static int ehci_platform_probe(struct platform_device *dev)
 	struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
 	struct ehci_platform_priv *priv;
 	struct ehci_hcd *ehci;
-	int err, irq, phy_num, clk = 0, rst;
+	int err, irq, phy_num, clk = 0;
 
 	if (usb_disabled())
 		return -ENODEV;
@@ -239,21 +238,13 @@  static int ehci_platform_probe(struct platform_device *dev)
 		}
 	}
 
-	for (rst = 0; rst < EHCI_MAX_RSTS; rst++) {
-		priv->rsts[rst] = devm_reset_control_get_shared_by_index(
-					&dev->dev, rst);
-		if (IS_ERR(priv->rsts[rst])) {
-			err = PTR_ERR(priv->rsts[rst]);
-			if (err == -EPROBE_DEFER)
-				goto err_reset;
-			priv->rsts[rst] = NULL;
-			break;
-		}
+	priv->rsts = devm_reset_control_array_get_optional_shared(&dev->dev);
+	if (IS_ERR(priv->rsts))
+		return PTR_ERR(priv->rsts);
 
-		err = reset_control_deassert(priv->rsts[rst]);
-		if (err)
-			goto err_reset;
-	}
+	err = reset_control_deassert(priv->rsts);
+	if (err)
+		goto err_put_clks;
 
 	if (pdata->big_endian_desc)
 		ehci->big_endian_desc = 1;
@@ -310,8 +301,7 @@  static int ehci_platform_probe(struct platform_device *dev)
 	if (pdata->power_off)
 		pdata->power_off(dev);
 err_reset:
-	while (--rst >= 0)
-		reset_control_assert(priv->rsts[rst]);
+	reset_control_assert(priv->rsts);
 err_put_clks:
 	while (--clk >= 0)
 		clk_put(priv->clks[clk]);
@@ -329,15 +319,14 @@  static int ehci_platform_remove(struct platform_device *dev)
 	struct usb_hcd *hcd = platform_get_drvdata(dev);
 	struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
 	struct ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
-	int clk, rst;
+	int clk;
 
 	usb_remove_hcd(hcd);
 
 	if (pdata->power_off)
 		pdata->power_off(dev);
 
-	for (rst = 0; rst < EHCI_MAX_RSTS && priv->rsts[rst]; rst++)
-		reset_control_assert(priv->rsts[rst]);
+	reset_control_assert(priv->rsts);
 
 	for (clk = 0; clk < EHCI_MAX_CLKS && priv->clks[clk]; clk++)
 		clk_put(priv->clks[clk]);