aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorLennert Buytenhek <buytenh@wantstofly.org>2006-12-18 01:02:24 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-12-18 00:14:58 +0000
commitab9d90db956dec1a83f4c4ef443df6bdbfc3f25d (patch)
tree2e0ba90fd9eef7e37aae91b8118983afed2fe6c0 /arch
parent[ARM] 4055/1: iop13xx: fix phys_io/io_pg_offst for iq81340mc/sc (diff)
downloadlinux-dev-ab9d90db956dec1a83f4c4ef443df6bdbfc3f25d.tar.xz
linux-dev-ab9d90db956dec1a83f4c4ef443df6bdbfc3f25d.zip
[ARM] 4056/1: iop13xx: fix resource.end off-by-one in flash setup
The struct resource 'end' field is inclusive, the iop13xx flash setup code got this wrong. Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-iop13xx/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-iop13xx/setup.c b/arch/arm/mach-iop13xx/setup.c
index 3756d2ccb1a7..5fbeb28d04bb 100644
--- a/arch/arm/mach-iop13xx/setup.c
+++ b/arch/arm/mach-iop13xx/setup.c
@@ -337,7 +337,7 @@ void __init iop13xx_platform_init(void)
#ifdef CONFIG_MTD_PHYSMAP
iq8134x_flash_resource.end = iq8134x_flash_resource.start +
- iq8134x_probe_flash_size();
+ iq8134x_probe_flash_size() - 1;
if (iq8134x_flash_resource.end > iq8134x_flash_resource.start)
iop13xx_devices[plat_idx++] = &iq8134x_flash;
else