public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: host: ehci-tegra: Fix error handling in tegra_ehci_probe()
@ 2020-10-26  9:06 Tang Bin
  2020-10-26 15:05 ` Alan Stern
  2020-10-27 13:03 ` [PATCH] usb: host: ehci-tegra: Fix error handling in tegra_ehci_probe() Thierry Reding
  0 siblings, 2 replies; 4+ messages in thread
From: Tang Bin @ 2020-10-26  9:06 UTC (permalink / raw)
  To: stern, gregkh, thierry.reding, jonathanh
  Cc: linux-usb, linux-tegra, linux-kernel, Tang Bin

If the function platform_get_irq() failed, the negative value
returned will not be detected here. So fix error handling in
tegra_ehci_probe().

Fixes: 79ad3b5add4a ("usb: host: Add EHCI driver for NVIDIA Tegra SoCs")
Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
---
 drivers/usb/host/ehci-tegra.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c
index 75a075daf..7b0efaf15 100644
--- a/drivers/usb/host/ehci-tegra.c
+++ b/drivers/usb/host/ehci-tegra.c
@@ -479,9 +479,9 @@ static int tegra_ehci_probe(struct platform_device *pdev)
 	u_phy->otg->host = hcd_to_bus(hcd);
 
 	irq = platform_get_irq(pdev, 0);
-	if (!irq) {
-		err = -ENODEV;
-		goto cleanup_phy;
+	if (irq < 0) {
+		err = irq;
+		goto cleanup_phy;
 	}
 
 	otg_set_host(u_phy->otg, &hcd->self);
-- 
2.20.1.windows.1




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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-26  9:06 [PATCH] usb: host: ehci-tegra: Fix error handling in tegra_ehci_probe() Tang Bin
2020-10-26 15:05 ` Alan Stern
2020-10-27  1:12   ` [PATCH] usb: host: ehci-tegra: Fix error handling integra_ehci_probe() Tang Bin
2020-10-27 13:03 ` [PATCH] usb: host: ehci-tegra: Fix error handling in tegra_ehci_probe() Thierry Reding

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox