diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-12 17:27:09 +0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-04-20 01:00:43 +0400 |
commit | 863a08dc8bc7ce32ecc9136671610a93a0dd68b1 (patch) | |
tree | a5a88aaeed57ca5c32bb4ce77c3c778156c46619 /arch/arm/mach-exynos/common.h | |
parent | 92c8e4962054a6cf5171b3d7a3a77b799ca62c10 (diff) | |
download | linux-863a08dc8bc7ce32ecc9136671610a93a0dd68b1.tar.xz |
irqchip: exynos: pass irq_base from platform
The platform code knows the IRQ base, while the irqchip driver
should really not. This is a littly hacky because we still
hardwire the IRQ base to 160 for the combiner in the DT case,
when we should really use -1. Removing that line will cause
a linear IRQ domain to be use, as we should.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/mach-exynos/common.h')
-rw-r--r-- | arch/arm/mach-exynos/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/common.h b/arch/arm/mach-exynos/common.h index 4ba8cbecc144..3e72d03a385e 100644 --- a/arch/arm/mach-exynos/common.h +++ b/arch/arm/mach-exynos/common.h @@ -70,7 +70,7 @@ void exynos4212_register_clocks(void); struct device_node; void combiner_init(void __iomem *combiner_base, struct device_node *np, - unsigned int max_nr); + unsigned int max_nr, int irq_base); extern struct smp_operations exynos_smp_ops; |