From patchwork Wed Feb 12 08:17:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vikas Singh X-Patchwork-Id: 236180 List-Id: U-Boot discussion From: vikas.singh at nxp.com (Vikas Singh) Date: Wed, 12 Feb 2020 13:47:09 +0530 Subject: [PATCH v2] board: lx2160a: Correct board fixup for PCIe nodes Message-ID: <1581495429-1800-1-git-send-email-vikas.singh@nxp.com> Update "board_fix_fdt" with correct counter value "i". This will fix the issue while fetching the "reg_names" resource from fdt after fixup. Signed-off-by: Vikas Singh --- Notes: V2 Add correct subject and remove the '.' from it board/freescale/lx2160a/lx2160a.c | 1 + 1 file changed, 1 insertion(+) diff --git a/board/freescale/lx2160a/lx2160a.c b/board/freescale/lx2160a/lx2160a.c index 4509a34..5c23554 100644 --- a/board/freescale/lx2160a/lx2160a.c +++ b/board/freescale/lx2160a/lx2160a.c @@ -169,6 +169,7 @@ int board_fix_fdt(void *fdt) reg_name = reg_names; remaining_names_len = names_len - (reg_name - reg_names); + i = 0; while ((i < ARRAY_SIZE(reg_names_map)) && remaining_names_len) { old_name_len = strlen(reg_names_map[i].old_str); new_name_len = strlen(reg_names_map[i].new_str);