diff options
author | Krzysztof Hałasa <khc@pm.waw.pl> | 2012-09-02 19:23:27 +0200 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-11-22 03:35:30 +0000 |
commit | 87ba5c6a313b4da5639a18d7796e51483ededd17 (patch) | |
tree | 6c8d658d82e67b3cb2af15b317ad9aa89a636fe9 /arch/arm/mach-ixp4xx | |
parent | 3043c5c8bf3511d76bbdcf27f56449549d4bb70c (diff) | |
download | talos-op-linux-87ba5c6a313b4da5639a18d7796e51483ededd17.tar.gz talos-op-linux-87ba5c6a313b4da5639a18d7796e51483ededd17.zip |
IXP4xx: Fix off-by-one bug in Goramo MultiLink platform.
Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
Diffstat (limited to 'arch/arm/mach-ixp4xx')
-rw-r--r-- | arch/arm/mach-ixp4xx/goramo_mlr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-ixp4xx/goramo_mlr.c b/arch/arm/mach-ixp4xx/goramo_mlr.c index f417632bc991..53b8348dfcc2 100644 --- a/arch/arm/mach-ixp4xx/goramo_mlr.c +++ b/arch/arm/mach-ixp4xx/goramo_mlr.c @@ -330,7 +330,7 @@ static struct platform_device device_hss_tab[] = { }; -static struct platform_device *device_tab[6] __initdata = { +static struct platform_device *device_tab[7] __initdata = { &device_flash, /* index 0 */ }; |