Thread (5 messages) 5 messages, 2 authors, 2021-11-13

Re: [PATCH v2 20/22] usb: host: xhci-mtk: deny IRQ0

From: Sergey Shtylyov <hidden>
Date: 2021-10-27 09:27:43
Also in: linux-mediatek, linux-usb

On 27.10.2021 12:18, Chunfeng Yun wrote:
quoted
If platform_get_irq() returns IRQ0 (considered invalid according to
Linus)
the driver blithely passes it to usb_add_hcd() that treats IRQ0 as no
IRQ
at all. Deny IRQ0 right away, returning -EINVAL from the probe()
method...

Fixes: 0cbd4b34cda9 ("xhci: mediatek: support MTK xHCI host
controller")
Signed-off-by: Sergey Shtylyov <redacted>
---
  drivers/usb/host/xhci-mtk.c | 4 +++-
  1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-
mtk.c
index c53f6f276d5c..d2dc8d9863ee 100644
--- a/drivers/usb/host/xhci-mtk.c
+++ b/drivers/usb/host/xhci-mtk.c
@@ -495,7 +495,7 @@ static int xhci_mtk_probe(struct platform_device
*pdev)
  		return ret;
  
  	irq = platform_get_irq_byname_optional(pdev, "host");
-	if (irq < 0) {
+	if (irq <= 0) {
  		if (irq == -EPROBE_DEFER)
  			return irq;
  
@@ -503,6 +503,8 @@ static int xhci_mtk_probe(struct platform_device
*pdev)
  		irq = platform_get_irq(pdev, 0);
  		if (irq < 0)
  			return irq;
+		if (!irq)
it's "if (irq <= 0)"?
    No, if (irq == 0).
quoted
+			return -EINVAL;
  	}
  
  	wakeup_irq = platform_get_irq_byname_optional(pdev, "wakeup");
MBR, Sergey

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help