diff options
author | Chuanhua Han <chuanhua.han@nxp.com> | 2019-07-10 21:16:49 +0800 |
---|---|---|
committer | Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> | 2019-08-22 09:07:35 +0530 |
commit | 954cd7882857c64158de8d90660f490b0b136b7a (patch) | |
tree | 9887181dcd9fe12c668cd4f71ae4a84480385c12 /include/configs/ls1028a_common.h | |
parent | 7abf9c16aa5f153903914620dc3062fa3bddef65 (diff) | |
download | u-boot-954cd7882857c64158de8d90660f490b0b136b7a.tar.gz |
boards: ls1028a: Add support of I2C driver model
DM_I2C_COMPAT is a compatibility layer that allows using the non-DM
I2C API when DM_I2C is used.When DM_I2C_COMPAT is not enabled for
compilation, a compilation error will be generated. This patch
solves the problem that the i2c-related api of the ls1028a platform
does not support dm.
Signed-off-by: Chuanhua Han <chuanhua.han@nxp.com>
Reviewed-by: Alex Marginean <alexm.osslist@gmail.com>
Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
Diffstat (limited to 'include/configs/ls1028a_common.h')
-rw-r--r-- | include/configs/ls1028a_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/ls1028a_common.h b/include/configs/ls1028a_common.h index a6c7c3753d..40fcd22582 100644 --- a/include/configs/ls1028a_common.h +++ b/include/configs/ls1028a_common.h @@ -42,7 +42,9 @@ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2048 * 1024) /* I2C */ +#ifndef CONFIG_DM_I2C #define CONFIG_SYS_I2C +#endif /* Serial Port */ #define CONFIG_CONS_INDEX 1 |