All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2021-04-26 21:36 ` Florian Fainelli
  0 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2021-04-26 21:36 UTC (permalink / raw)
  To: linux-kernel
  Cc: Florian Fainelli, Markus Mayer,
	maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Daniel Lezcano, Amit Kucheria,
	open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE

Utilize platform_get_irq_optional() to silence these messages:

brcmstb_thermal a581500.thermal: IRQ index 0 not found

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 drivers/thermal/broadcom/brcmstb_thermal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c b/drivers/thermal/broadcom/brcmstb_thermal.c
index 8df5edef1ded..0cedb8b4f00a 100644
--- a/drivers/thermal/broadcom/brcmstb_thermal.c
+++ b/drivers/thermal/broadcom/brcmstb_thermal.c
@@ -351,7 +351,7 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
 
 	priv->thermal = thermal;
 
-	irq = platform_get_irq(pdev, 0);
+	irq = platform_get_irq_optional(pdev, 0);
 	if (irq >= 0) {
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						brcmstb_tmon_irq_thread,
-- 
2.25.1


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

* [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2021-04-26 21:36 ` Florian Fainelli
  0 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2021-04-26 21:36 UTC (permalink / raw)
  To: linux-kernel
  Cc: Florian Fainelli, Markus Mayer,
	maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Daniel Lezcano, Amit Kucheria,
	open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE

Utilize platform_get_irq_optional() to silence these messages:

brcmstb_thermal a581500.thermal: IRQ index 0 not found

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
---
 drivers/thermal/broadcom/brcmstb_thermal.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c b/drivers/thermal/broadcom/brcmstb_thermal.c
index 8df5edef1ded..0cedb8b4f00a 100644
--- a/drivers/thermal/broadcom/brcmstb_thermal.c
+++ b/drivers/thermal/broadcom/brcmstb_thermal.c
@@ -351,7 +351,7 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
 
 	priv->thermal = thermal;
 
-	irq = platform_get_irq(pdev, 0);
+	irq = platform_get_irq_optional(pdev, 0);
 	if (irq >= 0) {
 		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
 						brcmstb_tmon_irq_thread,
-- 
2.25.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
  2021-04-26 21:36 ` Florian Fainelli
@ 2021-09-16  0:05   ` Florian Fainelli
  -1 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2021-09-16  0:05 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Daniel Lezcano, Amit Kucheria,
	open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE



On 4/26/2021 2:36 PM, Florian Fainelli wrote:
> Utilize platform_get_irq_optional() to silence these messages:
> 
> brcmstb_thermal a581500.thermal: IRQ index 0 not found
> 
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

This patch was never picked up and still applies. Daniel, can you pick 
it up?

Thanks!

> ---
>   drivers/thermal/broadcom/brcmstb_thermal.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c b/drivers/thermal/broadcom/brcmstb_thermal.c
> index 8df5edef1ded..0cedb8b4f00a 100644
> --- a/drivers/thermal/broadcom/brcmstb_thermal.c
> +++ b/drivers/thermal/broadcom/brcmstb_thermal.c
> @@ -351,7 +351,7 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
>   
>   	priv->thermal = thermal;
>   
> -	irq = platform_get_irq(pdev, 0);
> +	irq = platform_get_irq_optional(pdev, 0);
>   	if (irq >= 0) {
>   		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>   						brcmstb_tmon_irq_thread,
> 

-- 
Florian

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2021-09-16  0:05   ` Florian Fainelli
  0 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2021-09-16  0:05 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Daniel Lezcano, Amit Kucheria,
	open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE



On 4/26/2021 2:36 PM, Florian Fainelli wrote:
> Utilize platform_get_irq_optional() to silence these messages:
> 
> brcmstb_thermal a581500.thermal: IRQ index 0 not found
> 
> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>

This patch was never picked up and still applies. Daniel, can you pick 
it up?

Thanks!

> ---
>   drivers/thermal/broadcom/brcmstb_thermal.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c b/drivers/thermal/broadcom/brcmstb_thermal.c
> index 8df5edef1ded..0cedb8b4f00a 100644
> --- a/drivers/thermal/broadcom/brcmstb_thermal.c
> +++ b/drivers/thermal/broadcom/brcmstb_thermal.c
> @@ -351,7 +351,7 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
>   
>   	priv->thermal = thermal;
>   
> -	irq = platform_get_irq(pdev, 0);
> +	irq = platform_get_irq_optional(pdev, 0);
>   	if (irq >= 0) {
>   		ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>   						brcmstb_tmon_irq_thread,
> 

-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
  2021-09-16  0:05   ` Florian Fainelli
@ 2021-09-17  7:51     ` Daniel Lezcano
  -1 siblings, 0 replies; 12+ messages in thread
From: Daniel Lezcano @ 2021-09-17  7:51 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE


Applied, thanks

On 16/09/2021 02:05, Florian Fainelli wrote:
> 
> 
> On 4/26/2021 2:36 PM, Florian Fainelli wrote:
>> Utilize platform_get_irq_optional() to silence these messages:
>>
>> brcmstb_thermal a581500.thermal: IRQ index 0 not found
>>
>> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> 
> This patch was never picked up and still applies. Daniel, can you pick
> it up?
> 
> Thanks!
> 
>> ---
>>   drivers/thermal/broadcom/brcmstb_thermal.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c
>> b/drivers/thermal/broadcom/brcmstb_thermal.c
>> index 8df5edef1ded..0cedb8b4f00a 100644
>> --- a/drivers/thermal/broadcom/brcmstb_thermal.c
>> +++ b/drivers/thermal/broadcom/brcmstb_thermal.c
>> @@ -351,7 +351,7 @@ static int brcmstb_thermal_probe(struct
>> platform_device *pdev)
>>         priv->thermal = thermal;
>>   -    irq = platform_get_irq(pdev, 0);
>> +    irq = platform_get_irq_optional(pdev, 0);
>>       if (irq >= 0) {
>>           ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>>                           brcmstb_tmon_irq_thread,
>>
> 


-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2021-09-17  7:51     ` Daniel Lezcano
  0 siblings, 0 replies; 12+ messages in thread
From: Daniel Lezcano @ 2021-09-17  7:51 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE


Applied, thanks

On 16/09/2021 02:05, Florian Fainelli wrote:
> 
> 
> On 4/26/2021 2:36 PM, Florian Fainelli wrote:
>> Utilize platform_get_irq_optional() to silence these messages:
>>
>> brcmstb_thermal a581500.thermal: IRQ index 0 not found
>>
>> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
> 
> This patch was never picked up and still applies. Daniel, can you pick
> it up?
> 
> Thanks!
> 
>> ---
>>   drivers/thermal/broadcom/brcmstb_thermal.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c
>> b/drivers/thermal/broadcom/brcmstb_thermal.c
>> index 8df5edef1ded..0cedb8b4f00a 100644
>> --- a/drivers/thermal/broadcom/brcmstb_thermal.c
>> +++ b/drivers/thermal/broadcom/brcmstb_thermal.c
>> @@ -351,7 +351,7 @@ static int brcmstb_thermal_probe(struct
>> platform_device *pdev)
>>         priv->thermal = thermal;
>>   -    irq = platform_get_irq(pdev, 0);
>> +    irq = platform_get_irq_optional(pdev, 0);
>>       if (irq >= 0) {
>>           ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
>>                           brcmstb_tmon_irq_thread,
>>
> 


-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
  2021-09-17  7:51     ` Daniel Lezcano
@ 2022-03-01 18:05       ` Florian Fainelli
  -1 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2022-03-01 18:05 UTC (permalink / raw)
  To: Daniel Lezcano, Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE



On 9/17/2021 12:51 AM, Daniel Lezcano wrote:
> 
> Applied, thanks

Was it applied? I still cannot find it in linux-next or Linus' tree.
-- 
Florian

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2022-03-01 18:05       ` Florian Fainelli
  0 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2022-03-01 18:05 UTC (permalink / raw)
  To: Daniel Lezcano, Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE



On 9/17/2021 12:51 AM, Daniel Lezcano wrote:
> 
> Applied, thanks

Was it applied? I still cannot find it in linux-next or Linus' tree.
-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
  2022-03-01 18:05       ` Florian Fainelli
@ 2022-03-01 20:47         ` Daniel Lezcano
  -1 siblings, 0 replies; 12+ messages in thread
From: Daniel Lezcano @ 2022-03-01 20:47 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE

On 01/03/2022 19:05, Florian Fainelli wrote:
> 
> 
> On 9/17/2021 12:51 AM, Daniel Lezcano wrote:
>>
>> Applied, thanks
> 
> Was it applied? I still cannot find it in linux-next or Linus' tree.
I thought it was :/


-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2022-03-01 20:47         ` Daniel Lezcano
  0 siblings, 0 replies; 12+ messages in thread
From: Daniel Lezcano @ 2022-03-01 20:47 UTC (permalink / raw)
  To: Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE

On 01/03/2022 19:05, Florian Fainelli wrote:
> 
> 
> On 9/17/2021 12:51 AM, Daniel Lezcano wrote:
>>
>> Applied, thanks
> 
> Was it applied? I still cannot find it in linux-next or Linus' tree.
I thought it was :/


-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
  2022-03-01 20:47         ` Daniel Lezcano
@ 2022-03-01 21:20           ` Florian Fainelli
  -1 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2022-03-01 21:20 UTC (permalink / raw)
  To: Daniel Lezcano, Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE



On 3/1/2022 12:47 PM, Daniel Lezcano wrote:
> On 01/03/2022 19:05, Florian Fainelli wrote:
>>
>>
>> On 9/17/2021 12:51 AM, Daniel Lezcano wrote:
>>>
>>> Applied, thanks
>>
>> Was it applied? I still cannot find it in linux-next or Linus' tree.
> I thought it was :/

No worries, I just resent it:

https://lore.kernel.org/lkml/20220301181412.2008044-1-f.fainelli@gmail.com/
-- 
Florian

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

* Re: [PATCH] thermal: brcmstb_thermal: Interrupt is optional
@ 2022-03-01 21:20           ` Florian Fainelli
  0 siblings, 0 replies; 12+ messages in thread
From: Florian Fainelli @ 2022-03-01 21:20 UTC (permalink / raw)
  To: Daniel Lezcano, Florian Fainelli, linux-kernel
  Cc: Markus Mayer, maintainer:BROADCOM STB AVS TMON DRIVER, Zhang Rui,
	Amit Kucheria, open list:BROADCOM STB AVS TMON DRIVER,
	moderated list:BROADCOM BCM7XXX ARM ARCHITECTURE



On 3/1/2022 12:47 PM, Daniel Lezcano wrote:
> On 01/03/2022 19:05, Florian Fainelli wrote:
>>
>>
>> On 9/17/2021 12:51 AM, Daniel Lezcano wrote:
>>>
>>> Applied, thanks
>>
>> Was it applied? I still cannot find it in linux-next or Linus' tree.
> I thought it was :/

No worries, I just resent it:

https://lore.kernel.org/lkml/20220301181412.2008044-1-f.fainelli@gmail.com/
-- 
Florian

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2022-03-01 21:21 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-26 21:36 [PATCH] thermal: brcmstb_thermal: Interrupt is optional Florian Fainelli
2021-04-26 21:36 ` Florian Fainelli
2021-09-16  0:05 ` Florian Fainelli
2021-09-16  0:05   ` Florian Fainelli
2021-09-17  7:51   ` Daniel Lezcano
2021-09-17  7:51     ` Daniel Lezcano
2022-03-01 18:05     ` Florian Fainelli
2022-03-01 18:05       ` Florian Fainelli
2022-03-01 20:47       ` Daniel Lezcano
2022-03-01 20:47         ` Daniel Lezcano
2022-03-01 21:20         ` Florian Fainelli
2022-03-01 21:20           ` Florian Fainelli

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.