diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-30 04:46:40 +0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-01-11 21:19:02 +0400 |
commit | 6e11e0bd82ecacd13b839558a49f65ebc958e1bd (patch) | |
tree | cea8261ad658c707ad24254dfc3fe4fab5c16584 /arch/arm | |
parent | 91b60b1d5a56e5971237f9c88de2faf168a5ceaf (diff) | |
download | linux-6e11e0bd82ecacd13b839558a49f65ebc958e1bd.tar.xz |
ARM: S3C64XX: Fix interrupt configuration for PCA935x on Cragganmore
0 is a valid IRQ but the interrupt line for the pca935x certainly isn't
connected there which causes it to fail to probe.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-s3c64xx/mach-crag6410.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c64xx/mach-crag6410.c b/arch/arm/mach-s3c64xx/mach-crag6410.c index 6998b5b54141..3d8b20bcd21a 100644 --- a/arch/arm/mach-s3c64xx/mach-crag6410.c +++ b/arch/arm/mach-s3c64xx/mach-crag6410.c @@ -355,7 +355,7 @@ static struct platform_device *crag6410_devices[] __initdata = { static struct pca953x_platform_data crag6410_pca_data = { .gpio_base = PCA935X_GPIO_BASE, - .irq_base = 0, + .irq_base = -1, }; /* VDDARM is controlled by DVS1 connected to GPK(0) */ |