linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts
@ 2019-10-01 18:05 Geert Uytterhoeven
  2019-10-02  4:49 ` Yoshihiro Shimoda
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2019-10-01 18:05 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Stephen Boyd, Greg Kroah-Hartman, linux-renesas-soc, linux-gpio,
	linux-kernel, Geert Uytterhoeven

As platform_get_irq() now prints an error when the interrupt does not
exist, counting interrupts by looping until failure causes the printing
of scary messages like:

    sh-pfc e6060000.pin-controller: IRQ index 0 not found

Fix this by using the platform_irq_count() helper instead.

Fixes: 7723f4c5ecdb8d83 ("driver core: platform: Add an error message to platform_get_irq*()")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
This is a fix for v5.4-rc1.
---
 drivers/pinctrl/sh-pfc/core.c | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c
index b8640ad41bef26be..ce983247c9e28bfe 100644
--- a/drivers/pinctrl/sh-pfc/core.c
+++ b/drivers/pinctrl/sh-pfc/core.c
@@ -29,12 +29,12 @@
 static int sh_pfc_map_resources(struct sh_pfc *pfc,
 				struct platform_device *pdev)
 {
-	unsigned int num_windows, num_irqs;
 	struct sh_pfc_window *windows;
 	unsigned int *irqs = NULL;
+	unsigned int num_windows;
 	struct resource *res;
 	unsigned int i;
-	int irq;
+	int num_irqs;
 
 	/* Count the MEM and IRQ resources. */
 	for (num_windows = 0;; num_windows++) {
@@ -42,17 +42,13 @@ static int sh_pfc_map_resources(struct sh_pfc *pfc,
 		if (!res)
 			break;
 	}
-	for (num_irqs = 0;; num_irqs++) {
-		irq = platform_get_irq(pdev, num_irqs);
-		if (irq == -EPROBE_DEFER)
-			return irq;
-		if (irq < 0)
-			break;
-	}
-
 	if (num_windows == 0)
 		return -EINVAL;
 
+	num_irqs = platform_irq_count(pdev);
+	if (num_irqs < 0)
+		return num_irqs;
+
 	/* Allocate memory windows and IRQs arrays. */
 	windows = devm_kcalloc(pfc->dev, num_windows, sizeof(*windows),
 			       GFP_KERNEL);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts
  2019-10-01 18:05 [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts Geert Uytterhoeven
@ 2019-10-02  4:49 ` Yoshihiro Shimoda
  2019-10-03 16:12 ` Stephen Boyd
  2019-10-03 17:58 ` Niklas Söderlund
  2 siblings, 0 replies; 4+ messages in thread
From: Yoshihiro Shimoda @ 2019-10-02  4:49 UTC (permalink / raw)
  To: Geert Uytterhoeven, Linus Walleij
  Cc: Stephen Boyd, Greg Kroah-Hartman, linux-renesas-soc, linux-gpio,
	linux-kernel

Hi Geert-san,

> From: Geert Uytterhoeven, Sent: Wednesday, October 2, 2019 3:06 AM
> 
> As platform_get_irq() now prints an error when the interrupt does not
> exist, counting interrupts by looping until failure causes the printing
> of scary messages like:
> 
>     sh-pfc e6060000.pin-controller: IRQ index 0 not found
> 
> Fix this by using the platform_irq_count() helper instead.
> 
> Fixes: 7723f4c5ecdb8d83 ("driver core: platform: Add an error message to platform_get_irq*()")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> This is a fix for v5.4-rc1.

Thank you for the patch!

Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>

And, I tested this patch on R-Car H3. So,

Tested-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>

Best regards,
Yoshihiro Shimoda


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts
  2019-10-01 18:05 [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts Geert Uytterhoeven
  2019-10-02  4:49 ` Yoshihiro Shimoda
@ 2019-10-03 16:12 ` Stephen Boyd
  2019-10-03 17:58 ` Niklas Söderlund
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2019-10-03 16:12 UTC (permalink / raw)
  To: Geert Uytterhoeven, Linus Walleij
  Cc: Greg Kroah-Hartman, linux-renesas-soc, linux-gpio, linux-kernel,
	Geert Uytterhoeven

Quoting Geert Uytterhoeven (2019-10-01 11:05:47)
> As platform_get_irq() now prints an error when the interrupt does not
> exist, counting interrupts by looping until failure causes the printing
> of scary messages like:
> 
>     sh-pfc e6060000.pin-controller: IRQ index 0 not found
> 
> Fix this by using the platform_irq_count() helper instead.
> 
> Fixes: 7723f4c5ecdb8d83 ("driver core: platform: Add an error message to platform_get_irq*()")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---

Reviewed-by: Stephen Boyd <swboyd@chromium.org>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts
  2019-10-01 18:05 [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts Geert Uytterhoeven
  2019-10-02  4:49 ` Yoshihiro Shimoda
  2019-10-03 16:12 ` Stephen Boyd
@ 2019-10-03 17:58 ` Niklas Söderlund
  2 siblings, 0 replies; 4+ messages in thread
From: Niklas Söderlund @ 2019-10-03 17:58 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Linus Walleij, Stephen Boyd, Greg Kroah-Hartman,
	linux-renesas-soc, linux-gpio, linux-kernel

Hi Geert,

Thanks for your work.

On 2019-10-01 20:05:47 +0200, Geert Uytterhoeven wrote:
> As platform_get_irq() now prints an error when the interrupt does not
> exist, counting interrupts by looping until failure causes the printing
> of scary messages like:
> 
>     sh-pfc e6060000.pin-controller: IRQ index 0 not found
> 
> Fix this by using the platform_irq_count() helper instead.
> 
> Fixes: 7723f4c5ecdb8d83 ("driver core: platform: Add an error message to platform_get_irq*()")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Nice change.

Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>

> ---
> This is a fix for v5.4-rc1.
> ---
>  drivers/pinctrl/sh-pfc/core.c | 16 ++++++----------
>  1 file changed, 6 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c
> index b8640ad41bef26be..ce983247c9e28bfe 100644
> --- a/drivers/pinctrl/sh-pfc/core.c
> +++ b/drivers/pinctrl/sh-pfc/core.c
> @@ -29,12 +29,12 @@
>  static int sh_pfc_map_resources(struct sh_pfc *pfc,
>  				struct platform_device *pdev)
>  {
> -	unsigned int num_windows, num_irqs;
>  	struct sh_pfc_window *windows;
>  	unsigned int *irqs = NULL;
> +	unsigned int num_windows;
>  	struct resource *res;
>  	unsigned int i;
> -	int irq;
> +	int num_irqs;
>  
>  	/* Count the MEM and IRQ resources. */
>  	for (num_windows = 0;; num_windows++) {
> @@ -42,17 +42,13 @@ static int sh_pfc_map_resources(struct sh_pfc *pfc,
>  		if (!res)
>  			break;
>  	}
> -	for (num_irqs = 0;; num_irqs++) {
> -		irq = platform_get_irq(pdev, num_irqs);
> -		if (irq == -EPROBE_DEFER)
> -			return irq;
> -		if (irq < 0)
> -			break;
> -	}
> -
>  	if (num_windows == 0)
>  		return -EINVAL;
>  
> +	num_irqs = platform_irq_count(pdev);
> +	if (num_irqs < 0)
> +		return num_irqs;
> +
>  	/* Allocate memory windows and IRQs arrays. */
>  	windows = devm_kcalloc(pfc->dev, num_windows, sizeof(*windows),
>  			       GFP_KERNEL);
> -- 
> 2.17.1
> 

-- 
Regards,
Niklas Söderlund

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-03 17:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01 18:05 [PATCH] pinctrl: sh-pfc: Do not use platform_get_irq() to count interrupts Geert Uytterhoeven
2019-10-02  4:49 ` Yoshihiro Shimoda
2019-10-03 16:12 ` Stephen Boyd
2019-10-03 17:58 ` Niklas Söderlund

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).