1 --- a/include/linux/mtd/nand.h
2 +++ b/include/linux/mtd/nand.h
3 @@ -575,6 +575,7 @@ struct platform_nand_chip {
6 const char **part_probe_types;
7 + int (*chip_fixup)(struct mtd_info *mtd);
8 void (*set_parts)(uint64_t size,
9 struct platform_nand_chip *chip);
11 --- a/drivers/mtd/nand/plat_nand.c
12 +++ b/drivers/mtd/nand/plat_nand.c
13 @@ -80,7 +80,18 @@ static int __devinit plat_nand_probe(str
16 /* Scan to find existance of the device */
17 - if (nand_scan(&data->mtd, 1)) {
18 + if (nand_scan_ident(&data->mtd, 1)) {
23 + if (pdata->chip.chip_fixup) {
24 + res = pdata->chip.chip_fixup(&data->mtd);
29 + if (nand_scan_tail(&data->mtd)) {