diff options
author | Alex Marginean <alexandru.marginean@nxp.com> | 2020-01-11 01:05:36 +0200 |
---|---|---|
committer | Priyanka Jain <priyanka.jain@nxp.com> | 2020-01-24 14:28:26 +0530 |
commit | 2a322ff8121b66db138c74c1b6b657e326f60a8b (patch) | |
tree | f3b610dd137c7ae6893ddef3a33d07b9efc1a4f7 /board | |
parent | 430a5542f33153b30a283c1d28d92f5826b176a1 (diff) | |
download | u-boot-2a322ff8121b66db138c74c1b6b657e326f60a8b.tar.gz |
board: fsl: lx2160a: free up arch_misc_init
Currently LX2 board code uses arch_misc_init to set up the board mux on
RDB and QDS. Move this code to misc_init_r. This is consistent with LS
gen 2 and T series SoCs/boards.
Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/lx2160a/lx2160a.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/lx2160a/lx2160a.c b/board/freescale/lx2160a/lx2160a.c index 3dfc56df7c..0b0d6bf91a 100644 --- a/board/freescale/lx2160a/lx2160a.c +++ b/board/freescale/lx2160a/lx2160a.c @@ -582,8 +582,8 @@ void detail_board_ddr_info(void) print_ddr_info(0); } -#if defined(CONFIG_ARCH_MISC_INIT) -int arch_misc_init(void) +#ifdef CONFIG_MISC_INIT_R +int misc_init_r(void) { config_board_mux(); |