diff options
author | Tetsuyuki Kobayashi <koba@kmckk.co.jp> | 2012-09-06 07:19:36 +0000 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2012-09-18 11:19:44 +0900 |
commit | a704835d6a7a8254067a1be60d614cd5c0c73e44 (patch) | |
tree | 41cab73bb23713d5e57e6ed904004a36a2691f0d /arch | |
parent | 28e515878f8896b33c325ff9767cb0237210fb4c (diff) | |
download | linux-3.10-a704835d6a7a8254067a1be60d614cd5c0c73e44.tar.gz linux-3.10-a704835d6a7a8254067a1be60d614cd5c0c73e44.tar.bz2 linux-3.10-a704835d6a7a8254067a1be60d614cd5c0c73e44.zip |
ARM: shmobile: kzm9g: bugfix: correct mmcif interrupt settings
Correct interrupt settings of sh_mmc:int and sh_mmc:error in board-kzm9g.c.
Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-shmobile/board-kzm9g.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/board-kzm9g.c b/arch/arm/mach-shmobile/board-kzm9g.c index 53b7ea92c32..3b8a0171c3c 100644 --- a/arch/arm/mach-shmobile/board-kzm9g.c +++ b/arch/arm/mach-shmobile/board-kzm9g.c @@ -346,11 +346,11 @@ static struct resource sh_mmcif_resources[] = { .flags = IORESOURCE_MEM, }, [1] = { - .start = gic_spi(141), + .start = gic_spi(140), .flags = IORESOURCE_IRQ, }, [2] = { - .start = gic_spi(140), + .start = gic_spi(141), .flags = IORESOURCE_IRQ, }, }; |