linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] mailbox: mediatek: Fix handling of platform_get_irq() error
@ 2020-08-27 18:25 Krzysztof Kozlowski
  2020-10-02 16:30 ` Krzysztof Kozlowski
  2020-10-03  3:26 ` Chun-Kuang Hu
  0 siblings, 2 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2020-08-27 18:25 UTC (permalink / raw)
  To: Jassi Brar, Matthias Brugger, CK Hu, HS Liao, Houlong Wei,
	linux-kernel, linux-arm-kernel, linux-mediatek
  Cc: Frank Wunderlich, Krzysztof Kozlowski

platform_get_irq() returns -ERRNO on error.  In such case casting to u32
and comparing to 0 would pass the check.

Fixes: 623a6143a845 ("mailbox: mediatek: Add Mediatek CMDQ driver")
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

---

Changes since v2:
1. Fix subject.

Changes since v1:
1. Correct u32->int,
2. Fix left-over '!'.
---
 drivers/mailbox/mtk-cmdq-mailbox.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/mailbox/mtk-cmdq-mailbox.c b/drivers/mailbox/mtk-cmdq-mailbox.c
index 484d4438cd83..5665b6ea8119 100644
--- a/drivers/mailbox/mtk-cmdq-mailbox.c
+++ b/drivers/mailbox/mtk-cmdq-mailbox.c
@@ -69,7 +69,7 @@ struct cmdq_task {
 struct cmdq {
 	struct mbox_controller	mbox;
 	void __iomem		*base;
-	u32			irq;
+	int			irq;
 	u32			thread_nr;
 	u32			irq_mask;
 	struct cmdq_thread	*thread;
@@ -525,10 +525,8 @@ static int cmdq_probe(struct platform_device *pdev)
 	}
 
 	cmdq->irq = platform_get_irq(pdev, 0);
-	if (!cmdq->irq) {
-		dev_err(dev, "failed to get irq\n");
-		return -EINVAL;
-	}
+	if (cmdq->irq < 0)
+		return cmdq->irq;
 
 	plat_data = (struct gce_plat *)of_device_get_match_data(dev);
 	if (!plat_data) {
-- 
2.17.1


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

* Re: [PATCH v3] mailbox: mediatek: Fix handling of platform_get_irq() error
  2020-08-27 18:25 [PATCH v3] mailbox: mediatek: Fix handling of platform_get_irq() error Krzysztof Kozlowski
@ 2020-10-02 16:30 ` Krzysztof Kozlowski
  2020-10-03  3:26 ` Chun-Kuang Hu
  1 sibling, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2020-10-02 16:30 UTC (permalink / raw)
  To: Jassi Brar, Matthias Brugger, CK Hu, HS Liao, Houlong Wei,
	linux-kernel, linux-arm-kernel, linux-mediatek
  Cc: Frank Wunderlich

On Thu, Aug 27, 2020 at 08:25:07PM +0200, Krzysztof Kozlowski wrote:
> platform_get_irq() returns -ERRNO on error.  In such case casting to u32
> and comparing to 0 would pass the check.
> 
> Fixes: 623a6143a845 ("mailbox: mediatek: Add Mediatek CMDQ driver")
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
> 
> ---
> 
> Changes since v2:
> 1. Fix subject.
> 
> Changes since v1:
> 1. Correct u32->int,
> 2. Fix left-over '!'.
> ---
>  drivers/mailbox/mtk-cmdq-mailbox.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)

Any comments here? This is a bugfix.

Best regards,
Krzysztof


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

* Re: [PATCH v3] mailbox: mediatek: Fix handling of platform_get_irq() error
  2020-08-27 18:25 [PATCH v3] mailbox: mediatek: Fix handling of platform_get_irq() error Krzysztof Kozlowski
  2020-10-02 16:30 ` Krzysztof Kozlowski
@ 2020-10-03  3:26 ` Chun-Kuang Hu
  1 sibling, 0 replies; 3+ messages in thread
From: Chun-Kuang Hu @ 2020-10-03  3:26 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Jassi Brar, Matthias Brugger, CK Hu, HS Liao, Houlong Wei,
	linux-kernel, Linux ARM, moderated list:ARM/Mediatek SoC support,
	Frank Wunderlich

Krzysztof Kozlowski <krzk@kernel.org> 於 2020年8月28日 週五 上午2:25寫道:
>
> platform_get_irq() returns -ERRNO on error.  In such case casting to u32
> and comparing to 0 would pass the check.
>

Reviewed-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>

> Fixes: 623a6143a845 ("mailbox: mediatek: Add Mediatek CMDQ driver")
> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
>
> ---
>
> Changes since v2:
> 1. Fix subject.
>
> Changes since v1:
> 1. Correct u32->int,
> 2. Fix left-over '!'.
> ---
>  drivers/mailbox/mtk-cmdq-mailbox.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/mailbox/mtk-cmdq-mailbox.c b/drivers/mailbox/mtk-cmdq-mailbox.c
> index 484d4438cd83..5665b6ea8119 100644
> --- a/drivers/mailbox/mtk-cmdq-mailbox.c
> +++ b/drivers/mailbox/mtk-cmdq-mailbox.c
> @@ -69,7 +69,7 @@ struct cmdq_task {
>  struct cmdq {
>         struct mbox_controller  mbox;
>         void __iomem            *base;
> -       u32                     irq;
> +       int                     irq;
>         u32                     thread_nr;
>         u32                     irq_mask;
>         struct cmdq_thread      *thread;
> @@ -525,10 +525,8 @@ static int cmdq_probe(struct platform_device *pdev)
>         }
>
>         cmdq->irq = platform_get_irq(pdev, 0);
> -       if (!cmdq->irq) {
> -               dev_err(dev, "failed to get irq\n");
> -               return -EINVAL;
> -       }
> +       if (cmdq->irq < 0)
> +               return cmdq->irq;
>
>         plat_data = (struct gce_plat *)of_device_get_match_data(dev);
>         if (!plat_data) {
> --
> 2.17.1
>
>
> _______________________________________________
> Linux-mediatek mailing list
> Linux-mediatek@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-mediatek

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

end of thread, other threads:[~2020-10-03  3:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-27 18:25 [PATCH v3] mailbox: mediatek: Fix handling of platform_get_irq() error Krzysztof Kozlowski
2020-10-02 16:30 ` Krzysztof Kozlowski
2020-10-03  3:26 ` Chun-Kuang Hu

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