diff options
author | Aaro Koskinen <aaro.koskinen@iki.fi> | 2015-10-26 20:23:53 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-11-09 14:37:35 -0800 |
commit | b84e93d8386e55bcc29809ace4115811962253ab (patch) | |
tree | 0fd5d9d0bcc4fb3f8b163c6d9640ea9e29f5c5ba | |
parent | 91295d8f1bd685a07d02d28f9c68944563798c3e (diff) | |
download | lwn-b84e93d8386e55bcc29809ace4115811962253ab.tar.gz lwn-b84e93d8386e55bcc29809ace4115811962253ab.zip |
ARM: OMAP1: fix incorrect INT_DMA_LCD
commit 1bd5dfe41b994a6e793363894befef76626965a9 upstream.
Commit 685e2d08c54b ("ARM: OMAP1: Change interrupt numbering for
sparse IRQ") turned on SPARSE_IRQ on OMAP1, but forgot to change
the number of INT_DMA_LCD. This broke the boot at least on Nokia 770,
where the device hangs during framebuffer initialization.
Fix by defining INT_DMA_LCD like the other interrupts.
Fixes: 685e2d08c54b ("ARM: OMAP1: Change interrupt numbering for sparse IRQ")
Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | include/linux/omap-dma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/omap-dma.h b/include/linux/omap-dma.h index e5a70132a240..88fa8af2b937 100644 --- a/include/linux/omap-dma.h +++ b/include/linux/omap-dma.h @@ -17,7 +17,7 @@ #include <linux/platform_device.h> -#define INT_DMA_LCD 25 +#define INT_DMA_LCD (NR_IRQS_LEGACY + 25) #define OMAP1_DMA_TOUT_IRQ (1 << 0) #define OMAP_DMA_DROP_IRQ (1 << 1) |