diff options
author | Ye Li <ye.li@nxp.com> | 2016-10-13 13:14:56 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-10-13 13:14:56 +0800 |
commit | 18019b8f4b65d3261db6488e416eae66a6500316 (patch) | |
tree | 08eec1b0e8b708da1499ee8b3f6db8b8e7f29dae | |
parent | be0b2d9cb2969725d0231bc9836a3e2c39f84dee (diff) | |
download | u-boot-imx-18019b8f4b65d3261db6488e416eae66a6500316.zip u-boot-imx-18019b8f4b65d3261db6488e416eae66a6500316.tar.gz u-boot-imx-18019b8f4b65d3261db6488e416eae66a6500316.tar.bz2 |
MLK-13335 mx6sl: Fix build break for all i.MX6SL boards
Since the UART1 register base name is changed from UART1_IPS_BASE_ADDR
to UART1_BASE to align with other i.MX6 chips. Should update the board
configuration header file with the new name.
Signed-off-by: Ye Li <ye.li@nxp.com>
-rw-r--r-- | include/configs/mx6slevk.h | 2 | ||||
-rw-r--r-- | include/configs/warp.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h index 3dd6ed2..2722ec7 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h @@ -39,7 +39,7 @@ #define CONFIG_BOARD_LATE_INIT #define CONFIG_MXC_UART -#define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR +#define CONFIG_MXC_UART_BASE UART1_BASE /* MMC Configs */ #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR diff --git a/include/configs/warp.h b/include/configs/warp.h index 3e9a5a3..2e50e3f 100644 --- a/include/configs/warp.h +++ b/include/configs/warp.h @@ -22,7 +22,7 @@ #define CONFIG_BOARD_LATE_INIT #define CONFIG_MXC_UART -#define CONFIG_MXC_UART_BASE UART1_IPS_BASE_ADDR +#define CONFIG_MXC_UART_BASE UART1_BASE /* MMC Configs */ #define CONFIG_SYS_FSL_ESDHC_ADDR USDHC2_BASE_ADDR |