From 3c85542a223113df88c127af4b5ae1d756182769 Mon Sep 17 00:00:00 2001 From: Ye Li Date: Thu, 13 Oct 2016 13:14:56 +0800 Subject: 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 (cherry picked from commit 18019b8f4b65d3261db6488e416eae66a6500316) --- include/configs/mx6slevk.h | 2 +- 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 3e7e5a3..9ceceda 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h @@ -21,7 +21,7 @@ #define CONFIG_SYS_MALLOC_LEN (3 * SZ_1M) #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 1f7ae65..21e3db3 100644 --- a/include/configs/warp.h +++ b/include/configs/warp.h @@ -19,7 +19,7 @@ #define CONFIG_SYS_MALLOC_LEN (35 * SZ_1M) /* Increase due to DFU */ #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 -- cgit v1.1