]> git.karo-electronics.de Git - linux-beck.git/commit
mtd: nand: lpc32xx: fix invalid error handling of a requested irq
authorVladimir Zapolskiy <vz@mleia.com>
Mon, 5 Dec 2016 01:47:10 +0000 (03:47 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 26 Jan 2017 07:24:38 +0000 (08:24 +0100)
commitd8d82ac42e27a0312193364193139aa1917efe11
tree25ced9723868515d8421c74a494417f39f618c57
parent86249aef233e6e05ba84f6c9aab9e6b890fc6ba7
mtd: nand: lpc32xx: fix invalid error handling of a requested irq

commit cf9e1672a66c49ed8903c01b4c380a2f2dc91b40 upstream.

Semantics of NR_IRQS is different on machines with SPARSE_IRQ option
disabled or enabled, in the latter case IRQs are allocated starting
at least from the value specified by NR_IRQS and going upwards, so
the check of (irq >= NR_IRQ) to decide about an error code returned by
platform_get_irq() is completely invalid, don't attempt to overrule
irq subsystem in the driver.

The change fixes LPC32xx NAND MLC driver initialization on boot.

Fixes: 8cb17b5ed017 ("irqchip: Add LPC32xx interrupt controller driver")
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Acked-by: Sylvain Lemieux <slemieux.tyco@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/mtd/nand/lpc32xx_mlc.c