]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sysreset: Change Kconfig GPIO dependency
authorMichal Simek <michal.simek@amd.com>
Tue, 4 Jul 2023 12:05:13 +0000 (14:05 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 7 Jul 2023 20:47:15 +0000 (16:47 -0400)
DM_GPIO depends on GPIO to be enabled but select will cause that DM_GPIO is
selected without GPIO which ends up in compilation error:
undefined reference to `dm_gpio_set_value'
undefined reference to `dm_gpio_get_value'
undefined reference to `dm_gpio_free'
undefined reference to `gpio_request_by_name'

Signed-off-by: Michal Simek <michal.simek@amd.com>
[trini: Fix configs which had relied on these select's]
Signed-off-by: Tom Rini <trini@konsulko.com>
configs/ge_b1x5v2_defconfig
configs/microblaze-generic_defconfig
configs/qemu-ppce500_defconfig
drivers/sysreset/Kconfig

index faa22f939242e4777420605293002aa9f58ec860..b3b69a642a49d4f6fe6ba4ee6b3e8844ba1ed341 100644 (file)
@@ -14,6 +14,7 @@ CONFIG_ENV_SECT_SIZE=0x10000
 # CONFIG_GE_RTC is not set
 CONFIG_MX6QDL=y
 CONFIG_TARGET_GE_B1X5V2=y
+CONFIG_DM_GPIO=y
 CONFIG_DEFAULT_DEVICE_TREE="imx6dl-b1x5v2"
 CONFIG_SPL_TEXT_BASE=0x00908000
 CONFIG_SPL_SERIAL=y
index 6aa1d03e5b627abc3bc4f0cb19158a8a792ac18e..589da3226da30060398bad7051e750764d91e5ba 100644 (file)
@@ -4,6 +4,7 @@ CONFIG_SYS_MALLOC_LEN=0xc0000
 CONFIG_SYS_MALLOC_F_LEN=0x400
 CONFIG_NR_DRAM_BANKS=1
 CONFIG_ENV_SIZE=0x20000
+CONFIG_DM_GPIO=y
 CONFIG_DEFAULT_DEVICE_TREE="microblaze-generic"
 CONFIG_SYS_PROMPT="U-Boot-mONStR> "
 CONFIG_SPL_SERIAL=y
index 105b937efae5520b9e8ae86c79f49b33569b9035..5f0746e4e27c54a69d5c7bfe25043718102f8a95 100644 (file)
@@ -1,6 +1,7 @@
 CONFIG_PPC=y
 CONFIG_TEXT_BASE=0xf00000
 CONFIG_ENV_SIZE=0x2000
+CONFIG_DM_GPIO=y
 CONFIG_DEFAULT_DEVICE_TREE="qemu-ppce500"
 CONFIG_SYS_MONITOR_LEN=524288
 CONFIG_SYS_CLK_FREQ=33000000
index 03f7fdd59785212af044290fde14b5044a680e4c..bdbe2a95364d3cb00ba1a7cb985d56838eb154d2 100644 (file)
@@ -61,14 +61,14 @@ endif
 
 config POWEROFF_GPIO
        bool "Enable support for GPIO poweroff driver"
-       select DM_GPIO
+       depends on DM_GPIO
        help
          Support for system poweroff using a GPIO pin. This can be used
          for systems having a single GPIO to trigger a system poweroff.
 
 config SYSRESET_GPIO
        bool "Enable support for GPIO reset driver"
-       select DM_GPIO
+       depends on DM_GPIO
        help
          Reset support via GPIO pin connected reset logic. This is used for
          example on Microblaze where reset logic can be controlled via GPIO