net: fm: use get_nand_dev_by_index()
authorGrygorii Strashko <[email protected]>
Tue, 27 Jun 2017 00:13:00 +0000 (19:13 -0500)
committerTom Rini <[email protected]>
Wed, 12 Jul 2017 02:41:48 +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 <[email protected]>
Reviewed-by: Joe Hershberger <[email protected]>
drivers/net/fm/fm.c

index 89f0d6a14e3a9d7d2e0f56991b745bf04902713d..9fe34ad4a98380708bb4e77b15c291440e235e80 100644 (file)
@@ -357,7 +357,8 @@ int fm_init_common(int index, struct ccsr_fman *reg)
        size_t fw_length = CONFIG_SYS_QE_FMAN_FW_LENGTH;
        void *addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH);
 
-       rc = nand_read(nand_info[0], (loff_t)CONFIG_SYS_FMAN_FW_ADDR,
+       rc = nand_read(get_nand_dev_by_index(0),
+                      (loff_t)CONFIG_SYS_FMAN_FW_ADDR,
                       &fw_length, (u_char *)addr);
        if (rc == -EUCLEAN) {
                printf("NAND read of FMAN firmware at offset 0x%x failed %d\n",