Skip to content

Commit 1bd5dfe

Browse files
aakoskintmlind
authored andcommitted
ARM: OMAP1: fix incorrect INT_DMA_LCD
Commit 685e2d0 ("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. Cc: stable@vger.kernel.org # v4.2+ Fixes: 685e2d0 ("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>
1 parent 57df538 commit 1bd5dfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/omap-dma.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include <linux/platform_device.h>
1919

20-
#define INT_DMA_LCD 25
20+
#define INT_DMA_LCD (NR_IRQS_LEGACY + 25)
2121

2222
#define OMAP1_DMA_TOUT_IRQ (1 << 0)
2323
#define OMAP_DMA_DROP_IRQ (1 << 1)

0 commit comments

Comments
 (0)