diff options
author | Yogesh Gaur <yogeshnarayan.gaur@nxp.com> | 2017-12-07 11:10:14 +0530 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2017-12-14 13:05:07 -0800 |
commit | 70a131eb5ac1f4cceb5500ad3224473020497cc9 (patch) | |
tree | fb5e975678c6ce7b1a10f8ae43c5f244a1e72829 /board/freescale/ls2080aqds/ls2080aqds.c | |
parent | 20c7305101219aba62c9f1f84920a99d4026cad5 (diff) |
board/ls2080a, ls1088a: Add check for mc-dpl applied in fdt
Function fdt_fixup_board_enet() performs fdt fixup. Only return
fdt_status_okay() when both MC is applied and DPL is deployed, else
return fdt_status_fail().
This check is added to LS1088A/LS2080A/LS2088A boards.
Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale/ls2080aqds/ls2080aqds.c')
-rw-r--r-- | board/freescale/ls2080aqds/ls2080aqds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/ls2080aqds/ls2080aqds.c b/board/freescale/ls2080aqds/ls2080aqds.c index 1842d14e87..28c9538340 100644 --- a/board/freescale/ls2080aqds/ls2080aqds.c +++ b/board/freescale/ls2080aqds/ls2080aqds.c @@ -295,7 +295,7 @@ void fdt_fixup_board_enet(void *fdt) return; } - if (get_mc_boot_status() == 0) + if ((get_mc_boot_status() == 0) && (get_dpl_apply_status() == 0)) fdt_status_okay(fdt, offset); else fdt_status_fail(fdt, offset); |