diff options
author | Pankaj Bansal <pankaj.bansal@nxp.com> | 2019-11-20 09:12:47 +0000 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2019-11-29 10:38:12 +0530 |
commit | 9977ebd26863bd88aa0cd34f9af8ac27cd3ad724 (patch) | |
tree | 55cef62663fa755ab68176693f7d856558f775f3 | |
parent | 7a8d9fd73cbbdcc40deaba624516647930d3256a (diff) | |
download | u-boot-9977ebd26863bd88aa0cd34f9af8ac27cd3ad724.tar.gz |
board: fsl: lx2160a: Fix the typo in board_fix_fdt
Fix a typo that caused incorrect reg-name for pcie node in lx2160a rev2.
Fixes: 5d535aa40b ("board: fsl: lx2160a: implement board_fix_fdt")
Signed-off-by: Pankaj Bansal <pankaj.bansal@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
-rw-r--r-- | board/freescale/lx2160a/lx2160a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/lx2160a/lx2160a.c b/board/freescale/lx2160a/lx2160a.c index eff12747b4..e5b7fec9a4 100644 --- a/board/freescale/lx2160a/lx2160a.c +++ b/board/freescale/lx2160a/lx2160a.c @@ -128,7 +128,7 @@ int board_fix_fdt(void *fdt) char *old_str; char *new_str; } reg_names_map[] = { - { "ccsr", "dip" }, + { "ccsr", "dbi" }, { "pf_ctrl", "ctrl" } }; int off = -1, i; |