diff options
author | Peter Griffin <peter.griffin@linaro.org> | 2015-09-10 21:55:16 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-09-28 10:48:22 -0400 |
commit | efd7b60a81fe7a8ecffa585691d835456d5d551a (patch) | |
tree | 2ce4457fb85d1c2933e39b121bb2a9272ef88bc0 | |
parent | 17024e772e79800917b256dd4b341878f5283f1d (diff) | |
download | u-boot-efd7b60a81fe7a8ecffa585691d835456d5d551a.tar.gz |
ARM: hikey: Select DM, DM_GPIO from Kconfig
Most platforms enable these options from Kconfig rather
than the configs header file.
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/arm/Kconfig | 2 | ||||
-rw-r--r-- | include/configs/hikey.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c4371c7173..5a8d4b2052 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -602,6 +602,8 @@ config TARGET_LS2085ARDB config TARGET_HIKEY bool "Support HiKey 96boards Consumer Edition Platform" select ARM64 + select DM + select DM_GPIO help Support for HiKey 96boards platform. It features a HI6220 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. diff --git a/include/configs/hikey.h b/include/configs/hikey.h index 7666bf98c5..ae8187ad1c 100644 --- a/include/configs/hikey.h +++ b/include/configs/hikey.h @@ -83,9 +83,7 @@ #endif #define CONFIG_HIKEY_GPIO -#define CONFIG_DM_GPIO #define CONFIG_CMD_GPIO -#define CONFIG_DM /* SD/MMC configuration */ #define CONFIG_GENERIC_MMC |