diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-07-15 08:26:18 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-07-15 08:26:18 -0400 |
commit | 9a909867d2eca7727d0d5884df96e791e3531f24 (patch) | |
tree | 4ce1a83dd5b6fb8c6a5a1d4cd0f7b8257e64e675 /drivers | |
parent | 9d05cd51780c3855976b26cbee265490a0a10be9 (diff) |
[MTD NAND] Fix lookup error in nand_get_flash_type()
Spotted by liyu <liyu@ccoss.com.cn>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/nand/nand_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index cffd66309ffa..119d17cdb780 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c | |||
@@ -2222,7 +2222,7 @@ static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd, | |||
2222 | } | 2222 | } |
2223 | 2223 | ||
2224 | /* Try to identify manufacturer */ | 2224 | /* Try to identify manufacturer */ |
2225 | for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_id++) { | 2225 | for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) { |
2226 | if (nand_manuf_ids[maf_idx].id == *maf_id) | 2226 | if (nand_manuf_ids[maf_idx].id == *maf_id) |
2227 | break; | 2227 | break; |
2228 | } | 2228 | } |