Skip to content
Snippets Groups Projects
Commit dda1223b authored by juhosg's avatar juhosg
Browse files

[adm5120] make use the chip_fixup function of the plat_nand driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11376 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 878aef47
No related branches found
No related tags found
No related merge requests found
......@@ -213,6 +213,16 @@ static void __init rb1xx_mac_setup(void)
}
}
static int rb1xx_nand_fixup(struct mtd_info *mtd)
{
struct nand_chip *chip = mtd->priv;
if (mtd->writesize == 512)
chip->ecc.layout = &rb1xx_nand_ecclayout;
return 0;
}
static void __init rb1xx_flash_setup(void)
{
/* setup data for flash0 device */
......@@ -223,9 +233,10 @@ static void __init rb1xx_flash_setup(void)
adm5120_nand_data.chip.nr_chips = 1;
adm5120_nand_data.chip.nr_partitions = ARRAY_SIZE(rb1xx_nand_parts);
adm5120_nand_data.chip.partitions = rb1xx_nand_parts;
adm5120_nand_data.chip.ecclayout = &rb1xx_nand_ecclayout;
adm5120_nand_data.chip.chip_delay = RB1XX_NAND_CHIP_DELAY;
adm5120_nand_data.chip.options = NAND_NO_AUTOINCR;
adm5120_nand_data.chip.chip_fixup = &rb1xx_nand_fixup;
}
static void __init rb1xx_setup(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment