From mboxrd@z Thu Jan 1 00:00:00 1970 From: Grygorii Strashko Date: Mon, 26 Jun 2017 19:13:05 -0500 Subject: [U-Boot] [PATCH v4 15/18] board: BuR: use get_nand_dev_by_index() In-Reply-To: <20170627001308.23513-1-grygorii.strashko@ti.com> References: <20170627001308.23513-1-grygorii.strashko@ti.com> Message-ID: <20170627001308.23513-16-grygorii.strashko@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 Reviewed-by: Hannes Schmelzer Reviewed-by: Simon Glass --- board/BuR/common/common.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c index e8c6401..c3a56db 100644 --- a/board/BuR/common/common.c +++ b/board/BuR/common/common.c @@ -259,7 +259,8 @@ static int load_devicetree(void) } #ifdef CONFIG_NAND dtbsize = 0x20000; - rc = nand_read_skip_bad(nand_info[0], 0x40000, (size_t *)&dtbsize, + rc = nand_read_skip_bad(get_nand_dev_by_index(0), 0x40000, + (size_t *)&dtbsize, NULL, 0x20000, (u_char *)dtbaddr); #else char *dtbname = getenv("dtb"); -- 2.10.1