diff options
author | Ye Li <ye.li@nxp.com> | 2016-10-13 13:14:56 +0800 |
---|---|---|
committer | Robby Cai <robby.cai@nxp.com> | 2016-11-16 16:58:38 +0800 |
commit | 508726e1b53e325b764aa354b4dac447c86022ad (patch) | |
tree | f936efe0d6d539a138940ad255a8d07a9ab61979 /include | |
parent | 47c612f111510da52a8869b732f8b8411452db5b (diff) | |
download | u-boot-imx-508726e1b53e325b764aa354b4dac447c86022ad.zip u-boot-imx-508726e1b53e325b764aa354b4dac447c86022ad.tar.gz u-boot-imx-508726e1b53e325b764aa354b4dac447c86022ad.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>
(cherry picked from commit 18019b8f4b65d3261db6488e416eae66a6500316)
Diffstat (limited to 'include')
-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 |