diff options
author | Julien CORJON | 2016-02-05 16:19:31 +0100 |
---|---|---|
committer | Stefano Babic | 2016-02-21 11:36:27 +0100 |
commit | 2c79b7a3bbf9713046d98d7a6a0f2eb476c32a2b (patch) | |
tree | a1d1d5097ffa22c7c7e4afcbb6be2e8df20004f4 /board/seco | |
parent | a668436051e497da18ab79ad26649e26d8a08433 (diff) |
imx: mx6quq7: fix USDHC4 declaration
USDHC2 does not exist on mx6quq7 board, as USDHC4 was already been
declared this is probably a typo.
Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'board/seco')
-rw-r--r-- | board/seco/mx6quq7/mx6quq7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/seco/mx6quq7/mx6quq7.c b/board/seco/mx6quq7/mx6quq7.c index ea1d4b8e497..3743a9e3daa 100644 --- a/board/seco/mx6quq7/mx6quq7.c +++ b/board/seco/mx6quq7/mx6quq7.c @@ -93,7 +93,7 @@ int board_eth_init(bd_t *bis) static struct fsl_esdhc_cfg usdhc_cfg[2] = { {USDHC3_BASE_ADDR}, - {USDHC2_BASE_ADDR}, + {USDHC4_BASE_ADDR}, }; int board_mmc_init(bd_t *bis) |