mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] tty: serial: imx: Only get second/third IRQ when there is more than one IRQ
@ 2019-10-09  6:18 Anson Huang
  2019-10-09  6:53 ` Uwe Kleine-König
  0 siblings, 1 reply; 10+ messages in thread
From: Anson Huang @ 2019-10-09  6:18 UTC (permalink / raw)
  To: gregkh, jslaby, shawnguo, s.hauer, kernel, festevam,
	linux-serial, linux-arm-kernel, linux-kernel
  Cc: Linux-imx

All i.MX SoCs except i.MX1 have ONLY 1 IRQ, so it is better to check
the IRQ count before getting second/third IRQ to avoid below error
message during probe:

[    0.726219] imx-uart 30860000.serial: IRQ index 1 not found
[    0.731329] imx-uart 30860000.serial: IRQ index 2 not found

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 drivers/tty/serial/imx.c | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index 504d81c..081fa82 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -2198,6 +2198,7 @@ static int imx_uart_probe(struct platform_device *pdev)
 	u32 ucr1;
 	struct resource *res;
 	int txirq, rxirq, rtsirq;
+	int irq_count;
 
 	sport = devm_kzalloc(&pdev->dev, sizeof(*sport), GFP_KERNEL);
 	if (!sport)
@@ -2220,9 +2221,17 @@ static int imx_uart_probe(struct platform_device *pdev)
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
+	irq_count = platform_irq_count(pdev);
+	if (irq_count < 0)
+		return irq_count;
+
 	rxirq = platform_get_irq(pdev, 0);
-	txirq = platform_get_irq(pdev, 1);
-	rtsirq = platform_get_irq(pdev, 2);
+	if (irq_count > 1) {
+		txirq = platform_get_irq(pdev, 1);
+		rtsirq = platform_get_irq(pdev, 2);
+	} else {
+		txirq = rtsirq = -ENXIO;
+	}
 
 	sport->port.dev = &pdev->dev;
 	sport->port.mapbase = res->start;
-- 
2.7.4


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

end of thread, other threads:[~2019-10-09  9:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-09  6:18 [PATCH] tty: serial: imx: Only get second/third IRQ when there is more than one IRQ Anson Huang
2019-10-09  6:53 ` Uwe Kleine-König
2019-10-09  6:58   ` Anson Huang
2019-10-09  7:14     ` Uwe Kleine-König
2019-10-09  7:24       ` Anson Huang
2019-10-09  7:37         ` Uwe Kleine-König
2019-10-09  7:43           ` Anson Huang
2019-10-09  8:12   ` Andy Shevchenko
2019-10-09  9:29     ` Uwe Kleine-König
2019-10-09  9:36       ` Anson Huang

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

all inboxes | Powered by JetHome®