From mboxrd@z Thu Jan 1 00:00:00 1970 Subject: Re: [PATCH] mtd: nand: lpc32xx: fix invalid error handling of a requested irq From: Sylvain Lemieux To: Vladimir Zapolskiy Cc: Boris Brezillon , Richard Weinberger , Brian Norris , Marek Vasut , linux-mtd@lists.infradead.org, linux-arm-kernel@lists.infradead.org In-Reply-To: <20161205014710.2015-1-vz@mleia.com> References: <20161205014710.2015-1-vz@mleia.com> Content-Type: text/plain; charset="UTF-8" Date: Wed, 07 Dec 2016 13:09:25 -0500 Message-ID: <1481134165.9248.4.camel@localhost> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, 2016-12-05 at 03:47 +0200, Vladimir Zapolskiy wrote: > 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. > > Signed-off-by: Vladimir Zapolskiy > --- > drivers/mtd/nand/lpc32xx_mlc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Acked-by: Sylvain Lemieux