Commit 9a909867 authored by David Woodhouse's avatar David Woodhouse

[MTD NAND] Fix lookup error in nand_get_flash_type()

Spotted by liyu <liyu@ccoss.com.cn>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent 9d05cd51
...@@ -2222,7 +2222,7 @@ static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd, ...@@ -2222,7 +2222,7 @@ static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
} }
/* Try to identify manufacturer */ /* Try to identify manufacturer */
for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_id++) { for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) {
if (nand_manuf_ids[maf_idx].id == *maf_id) if (nand_manuf_ids[maf_idx].id == *maf_id)
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment