aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c64xx/mach-smdk6400.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2015-02-27 16:06:58 -0500
committerArnd Bergmann <arnd@arndb.de>2015-12-01 15:50:24 -0500
commitba279044560b1d2d2237beefb1a695f43f23fc06 (patch)
tree5bbb0ef211c4a3fea8bdf09697f3a857703ef28f /arch/arm/mach-s3c64xx/mach-smdk6400.c
parenta0e157afd0c3ecb2e953eb41da04da2bf0e3d6c3 (diff)
ARM: s3c64xx: enable sparse IRQ support
This is another prerequisite for enabling multiplatform support, and it is the part I am least certain about. I assume it will cause the extra boot message "Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated" to be printed, but otherwise work ok. This definitely needs to be tested on real hardware to see if it works. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-s3c64xx/mach-smdk6400.c')
-rw-r--r--arch/arm/mach-s3c64xx/mach-smdk6400.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c64xx/mach-smdk6400.c b/arch/arm/mach-s3c64xx/mach-smdk6400.c
index 6f425126a735..7d8a74fd8915 100644
--- a/arch/arm/mach-s3c64xx/mach-smdk6400.c
+++ b/arch/arm/mach-s3c64xx/mach-smdk6400.c
@@ -27,6 +27,7 @@
27#include <asm/mach/map.h> 27#include <asm/mach/map.h>
28#include <asm/mach/irq.h> 28#include <asm/mach/irq.h>
29 29
30#include <mach/irqs.h>
30#include <mach/hardware.h> 31#include <mach/hardware.h>
31#include <mach/map.h> 32#include <mach/map.h>
32 33
@@ -88,7 +89,7 @@ static void __init smdk6400_machine_init(void)
88MACHINE_START(SMDK6400, "SMDK6400") 89MACHINE_START(SMDK6400, "SMDK6400")
89 /* Maintainer: Ben Dooks <ben-linux@fluff.org> */ 90 /* Maintainer: Ben Dooks <ben-linux@fluff.org> */
90 .atag_offset = 0x100, 91 .atag_offset = 0x100,
91 92 .nr_irqs = S3C64XX_NR_IRQS,
92 .init_irq = s3c6400_init_irq, 93 .init_irq = s3c6400_init_irq,
93 .map_io = smdk6400_map_io, 94 .map_io = smdk6400_map_io,
94 .init_machine = smdk6400_machine_init, 95 .init_machine = smdk6400_machine_init,