diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2010-08-11 22:53:54 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-08-12 07:17:32 -0400 |
commit | ef56609f9c7fdf5baa9d9f86f84a7bd8a717cd25 (patch) | |
tree | 1d275a985658ed35bd5303113b311c364025d45c | |
parent | 5eab6aaaaf0149ada4afd1aebce1978e1cc5a3e7 (diff) |
BFIN: Fix gen_nand probe structures contents
These two platforms didn't properly fill nr_chips in gen_nand
registration and therefore depended on gen_nand bug fixed by by commit
81cbb0b17796d81cbd92defe113cf2a7c7a21fbb ("mtd: gen_nand: fix support for
multiple chips")
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 1 | ||||
-rw-r--r-- | arch/blackfin/mach-bf561/boards/acvilon.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index 9eaf5b05c11e..68a27bccc7d4 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c | |||
@@ -400,6 +400,7 @@ static int bfin_plat_nand_dev_ready(struct mtd_info *mtd) | |||
400 | 400 | ||
401 | static struct platform_nand_data bfin_plat_nand_data = { | 401 | static struct platform_nand_data bfin_plat_nand_data = { |
402 | .chip = { | 402 | .chip = { |
403 | .nr_chips = 1, | ||
403 | .chip_delay = 30, | 404 | .chip_delay = 30, |
404 | #ifdef CONFIG_MTD_PARTITIONS | 405 | #ifdef CONFIG_MTD_PARTITIONS |
405 | .part_probe_types = part_probes, | 406 | .part_probe_types = part_probes, |
diff --git a/arch/blackfin/mach-bf561/boards/acvilon.c b/arch/blackfin/mach-bf561/boards/acvilon.c index bfcfa86db2b5..35b6d124c1e3 100644 --- a/arch/blackfin/mach-bf561/boards/acvilon.c +++ b/arch/blackfin/mach-bf561/boards/acvilon.c | |||
@@ -284,6 +284,7 @@ static int bfin_plat_nand_dev_ready(struct mtd_info *mtd) | |||
284 | 284 | ||
285 | static struct platform_nand_data bfin_plat_nand_data = { | 285 | static struct platform_nand_data bfin_plat_nand_data = { |
286 | .chip = { | 286 | .chip = { |
287 | .nr_chips = 1, | ||
287 | .chip_delay = 30, | 288 | .chip_delay = 30, |
288 | #ifdef CONFIG_MTD_PARTITIONS | 289 | #ifdef CONFIG_MTD_PARTITIONS |
289 | .part_probe_types = part_probes, | 290 | .part_probe_types = part_probes, |