]> git.sur5r.net Git - u-boot/commitdiff
cmd: jffs2: use get_nand_dev_by_index()
authorGrygorii Strashko <grygorii.strashko@ti.com>
Tue, 27 Jun 2017 00:12:55 +0000 (19:12 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 12 Jul 2017 02:41:46 +0000 (22:41 -0400)
As part of preparation for nand DM conversion the new API has been
introduced to remove direct access to nand_info array. So, use it here
instead of accessing to nand_info array directly.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
cmd/jffs2.c

index 9be198eddce44b638f76477308860bbabf012ec4..dc94705ccd73ee87b9ee140905957aef99445a47 100644 (file)
@@ -166,8 +166,9 @@ static int mtd_device_validate(u8 type, u8 num, u32 *size)
 #endif
        } else if (type == MTD_DEV_TYPE_NAND) {
 #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
-               if (num < CONFIG_SYS_MAX_NAND_DEVICE) {
-                       *size = nand_info[num]->size;
+               struct mtd_info *mtd = get_nand_dev_by_index(num);
+               if (mtd) {
+                       *size = mtd->size;
                        return 0;
                }
 
@@ -244,7 +245,7 @@ static inline u32 get_part_sector_size_nand(struct mtdids *id)
 #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)
        struct mtd_info *mtd;
 
-       mtd = nand_info[id->num];
+       mtd = get_nand_dev_by_index(id->num);
 
        return mtd->erasesize;
 #else