diff options
author | Zhao Qiang <B45475@freescale.com> | 2014-09-26 16:25:32 +0800 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-11-19 12:56:04 -0800 |
commit | 63e75fd7a3808df091eb50786519703c5df76b8e (patch) | |
tree | 428f299f55a556f00df65010d92d24cb1ecce1f8 /board | |
parent | 93d3320417b16f331d5edb87409cd7a347c4eeaa (diff) | |
download | u-boot-imx-63e75fd7a3808df091eb50786519703c5df76b8e.zip u-boot-imx-63e75fd7a3808df091eb50786519703c5df76b8e.tar.gz u-boot-imx-63e75fd7a3808df091eb50786519703c5df76b8e.tar.bz2 |
qe: add qe support to ls1021aqds
add qe support to ls1021aqds
Signed-off-by: Zhao Qiang <B45475@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/ls1021aqds/ls1021aqds.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/freescale/ls1021aqds/ls1021aqds.c b/board/freescale/ls1021aqds/ls1021aqds.c index 5fafc85..bcfa9b9 100644 --- a/board/freescale/ls1021aqds/ls1021aqds.c +++ b/board/freescale/ls1021aqds/ls1021aqds.c @@ -17,6 +17,9 @@ #include "../common/qixis.h" #include "ls1021aqds_qixis.h" +#ifdef CONFIG_U_QE +#include "../../../drivers/qe/qe.h" +#endif DECLARE_GLOBAL_DATA_PTR; @@ -237,6 +240,11 @@ int board_init(void) fsl_serdes_init(); config_serdes_mux(); #endif + +#ifdef CONFIG_U_QE + u_qe_init(); +#endif + return 0; } |