diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-03-09 13:09:27 +0100 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-03-25 10:39:51 -0400 |
commit | 31d31fe76859653172120b5f8f7440f2a0694de9 (patch) | |
tree | 2e853da11d54df5a2a4a74bfea222f0a3f6d9119 /arch/arm/mach-shmobile/board-ap4evb.c | |
parent | 69d1fe18e92afb4687605a1ab2ec73fbc3bae344 (diff) | |
download | blackbird-op-linux-31d31fe76859653172120b5f8f7440f2a0694de9.tar.gz blackbird-op-linux-31d31fe76859653172120b5f8f7440f2a0694de9.zip |
ARM: mach-shmobile: fix SDHI IO address-range
SDHI registers occupy only a 0x100 byte large window, not 0x200 byte.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'arch/arm/mach-shmobile/board-ap4evb.c')
-rw-r--r-- | arch/arm/mach-shmobile/board-ap4evb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c index 9ef8718ea7a3..d543ab5526c2 100644 --- a/arch/arm/mach-shmobile/board-ap4evb.c +++ b/arch/arm/mach-shmobile/board-ap4evb.c @@ -312,7 +312,7 @@ static struct resource sdhi0_resources[] = { [0] = { .name = "SDHI0", .start = 0xe6850000, - .end = 0xe68501ff, + .end = 0xe68500ff, .flags = IORESOURCE_MEM, }, [1] = { @@ -345,7 +345,7 @@ static struct resource sdhi1_resources[] = { [0] = { .name = "SDHI1", .start = 0xe6860000, - .end = 0xe68601ff, + .end = 0xe68600ff, .flags = IORESOURCE_MEM, }, [1] = { |