From: Alexey Brodkin Date: Sun, 10 Dec 2017 17:55:44 +0000 (+0300) Subject: gpio/hsdk: Depend on DM_GPIO instead of simple DM X-Git-Tag: v2018.01-rc2~34^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d5fbcd57ed7cdcbaddf54a45e85b465bb85bfec5;p=oweals%2Fu-boot.git gpio/hsdk: Depend on DM_GPIO instead of simple DM This driver really is DM GPIO one and so we need to have a correct dependency, because DM alone doesn't provide required for CMD_GPIO call and we're seeing build failures like this: ---------------------->8--------------------- cmd/built-in.o: In function 'do_gpio': .../cmd/gpio.c:188: undefined reference to 'gpio_request' ... ---------------------->8--------------------- Signed-off-by: Alexey Brodkin Cc: Eugeniy Paltsev Cc: Simon Glass Reviewed-by: Simon Glass --- diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 2acb33bb51..b4e859e40c 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -82,7 +82,7 @@ config IMX_RGPIO2P config HSDK_CREG_GPIO bool "HSDK CREG GPIO griver" - depends on DM + depends on DM_GPIO default n help This driver supports CREG GPIOs on Synopsys HSDK SOC.