
-----Original Message----- From: Biwen Li biwen.li@oss.nxp.com Sent: Friday, October 16, 2020 2:42 PM To: Priyanka Jain priyanka.jain@nxp.com Cc: Jiafei Pan jiafei.pan@nxp.com; u-boot@lists.denx.de; Xiaobo Xie xiaobo.xie@nxp.com; Biwen Li biwen.li@nxp.com Subject: [PATCH 11/15] configs: ls1028a: enable CONFIG_MPC8XXX_GPIO
From: Biwen Li biwen.li@nxp.com
Enable CONFIG_MPC8XXX_GPIO for SoC LS1028A
Signed-off-by: Biwen Li biwen.li@nxp.com
include/configs/ls1028a_common.h | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/include/configs/ls1028a_common.h b/include/configs/ls1028a_common.h index 8345cd7acf..c89e7b5f3d 100644 --- a/include/configs/ls1028a_common.h +++ b/include/configs/ls1028a_common.h @@ -36,6 +36,16 @@ /* Size of malloc() pool */ #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2048 * 1024)
+/* GPIO */ +#ifdef CONFIG_DM_GPIO +#ifndef CONFIG_MPC8XXX_GPIO +#define CONFIG_MPC8XXX_GPIO +#endif +#ifndef CONFIG_CMD_GPIO +#define CONFIG_CMD_GPIO +#endif +#endif
/* I2C */ #ifndef CONFIG_DM_I2C
#define CONFIG_SYS_I2C
2.17.1
Kindly fix below checkpatch error:
ERROR: All commands are managed by Kconfig #27: FILE: include/configs/ls1028a_common.h:45: +#define CONFIG_CMD_GPIO
total: 1 errors, 0 warnings, 0 checks, 16 lines checked
Regards Priyanka