diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2015-03-26 19:58:08 +0300 |
---|---|---|
committer | Kukjin Kim <kgene@kernel.org> | 2015-03-26 19:58:08 +0300 |
commit | 4e330ae4ab2915444f1e6dca1358a910aa259362 (patch) | |
tree | 4c7b3882ca79f598eb6f49142b14cf8174e85b5b /arch/arm/mach-s3c64xx/mach-crag6410.c | |
parent | 1cd3de0a27687e07457fd561e61480d2d2278875 (diff) | |
download | linux-4e330ae4ab2915444f1e6dca1358a910aa259362.tar.xz |
ARM: S3C64XX: Use fixed IRQ bases to avoid conflicts on Cragganmore
There are two PMICs on Cragganmore, currently one dynamically assign
its IRQ base and the other uses a fixed base. It is possible for the
statically assigned PMIC to fail if its IRQ is taken by the dynamically
assigned one. Fix this by statically assigning both the IRQ bases.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Kukjin Kim <kgene@kernel.org>
Diffstat (limited to 'arch/arm/mach-s3c64xx/mach-crag6410.c')
-rw-r--r-- | arch/arm/mach-s3c64xx/mach-crag6410.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c64xx/mach-crag6410.c b/arch/arm/mach-s3c64xx/mach-crag6410.c index 10b913baab28..65c426bc45f7 100644 --- a/arch/arm/mach-s3c64xx/mach-crag6410.c +++ b/arch/arm/mach-s3c64xx/mach-crag6410.c @@ -554,6 +554,7 @@ static struct wm831x_touch_pdata touch_pdata = { static struct wm831x_pdata crag_pmic_pdata = { .wm831x_num = 1, + .irq_base = BANFF_PMIC_IRQ_BASE, .gpio_base = BANFF_PMIC_GPIO_BASE, .soft_shutdown = true, |