The patch titled ARM i.MX serial: fix IRQ allocation has been removed from the -mm tree. Its filename was arm-imx-serial-fix-irq-allocation.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ARM i.MX serial: fix IRQ allocation From: Pavel Pisa <ppisa4lists@xxxxxxxxxx> If RTS interrupt is caused by RTS senzing logic inside i.MX UART module the IRQ type cannot be set. It applies only for interrupts going through GPIO layer. The problem has been noticed by Konstantin Kletschke some time ago. No IRQF_TRIGGER set_type function for IRQ 26 (MPU) I would not change type to fixed 0, because it could be possible to use different GPIO MX1 pin for RTS in the theory. On the other hand it is only for documentation purposes now, because RTS read code would have to be adjusted in such case. Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Cc: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/imx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/serial/imx.c~arm-imx-serial-fix-irq-allocation drivers/serial/imx.c --- a/drivers/serial/imx.c~arm-imx-serial-fix-irq-allocation +++ a/drivers/serial/imx.c @@ -403,7 +403,8 @@ static int imx_startup(struct uart_port if (retval) goto error_out2; retval = request_irq(sport->rtsirq, imx_rtsint, - IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING, + (sport->rtsirq < IMX_IRQS) ? 0 : + IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING, DRIVER_NAME, sport); if (retval) goto error_out3; _ Patches currently in -mm which might be from ppisa4lists@xxxxxxxxxx are - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html