ARM: Fix gen_nand probe structures contents
These three platforms didn't properly fill nr_chips in gen_nand
registration and therefore depended on gen_nand bug fixed by commit
81cbb0b177
("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>
This commit is contained in:
parent
db9ebb7cd0
commit
ef077179a2
@ -100,6 +100,7 @@ ixdp425_flash_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
|
|||||||
|
|
||||||
static struct platform_nand_data ixdp425_flash_nand_data = {
|
static struct platform_nand_data ixdp425_flash_nand_data = {
|
||||||
.chip = {
|
.chip = {
|
||||||
|
.nr_chips = 1,
|
||||||
.chip_delay = 30,
|
.chip_delay = 30,
|
||||||
.options = NAND_NO_AUTOINCR,
|
.options = NAND_NO_AUTOINCR,
|
||||||
#ifdef CONFIG_MTD_PARTITIONS
|
#ifdef CONFIG_MTD_PARTITIONS
|
||||||
|
@ -165,6 +165,7 @@ static void qong_nand_select_chip(struct mtd_info *mtd, int chip)
|
|||||||
|
|
||||||
static struct platform_nand_data qong_nand_data = {
|
static struct platform_nand_data qong_nand_data = {
|
||||||
.chip = {
|
.chip = {
|
||||||
|
.nr_chips = 1,
|
||||||
.chip_delay = 20,
|
.chip_delay = 20,
|
||||||
.options = 0,
|
.options = 0,
|
||||||
},
|
},
|
||||||
|
@ -216,6 +216,7 @@ static struct mtd_partition ts78xx_ts_nand_parts[] = {
|
|||||||
|
|
||||||
static struct platform_nand_data ts78xx_ts_nand_data = {
|
static struct platform_nand_data ts78xx_ts_nand_data = {
|
||||||
.chip = {
|
.chip = {
|
||||||
|
.nr_chips = 1,
|
||||||
.part_probe_types = ts_nand_part_probes,
|
.part_probe_types = ts_nand_part_probes,
|
||||||
.partitions = ts78xx_ts_nand_parts,
|
.partitions = ts78xx_ts_nand_parts,
|
||||||
.nr_partitions = ARRAY_SIZE(ts78xx_ts_nand_parts),
|
.nr_partitions = ARRAY_SIZE(ts78xx_ts_nand_parts),
|
||||||
|
Loading…
Reference in New Issue
Block a user