diff options
| author | Michal Simek <michal.simek@amd.com> | 2023-07-04 14:05:13 +0200 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2023-07-07 16:47:15 -0400 |
| commit | 99a0532a2d09edac8d8cf59deb68e03f3275e494 (patch) | |
| tree | 169b2d6887f6b9bd613b7d372cb241d78feb5a78 /configs/microblaze-generic_defconfig | |
| parent | 0f42f8995593570b0a0d0726cd1f021b5f90172f (diff) | |
sysreset: Change Kconfig GPIO dependency
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>
Diffstat (limited to 'configs/microblaze-generic_defconfig')
| -rw-r--r-- | configs/microblaze-generic_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/microblaze-generic_defconfig b/configs/microblaze-generic_defconfig index 6aa1d03e5b6..589da3226da 100644 --- a/configs/microblaze-generic_defconfig +++ b/configs/microblaze-generic_defconfig @@ -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 |
