diff options
author | Lennert Buytenhek <buytenh@wantstofly.org> | 2006-12-17 19:02:24 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-12-17 19:14:58 -0500 |
commit | ab9d90db956dec1a83f4c4ef443df6bdbfc3f25d (patch) | |
tree | 2e0ba90fd9eef7e37aae91b8118983afed2fe6c0 /arch/arm | |
parent | 6d2e857d02a59332b7cd89aeac8b5962a357ac7a (diff) |
[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/arm')
-rw-r--r-- | arch/arm/mach-iop13xx/setup.c | 2 |
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) | |||
337 | 337 | ||
338 | #ifdef CONFIG_MTD_PHYSMAP | 338 | #ifdef CONFIG_MTD_PHYSMAP |
339 | iq8134x_flash_resource.end = iq8134x_flash_resource.start + | 339 | iq8134x_flash_resource.end = iq8134x_flash_resource.start + |
340 | iq8134x_probe_flash_size(); | 340 | iq8134x_probe_flash_size() - 1; |
341 | if (iq8134x_flash_resource.end > iq8134x_flash_resource.start) | 341 | if (iq8134x_flash_resource.end > iq8134x_flash_resource.start) |
342 | iop13xx_devices[plat_idx++] = &iq8134x_flash; | 342 | iop13xx_devices[plat_idx++] = &iq8134x_flash; |
343 | else | 343 | else |