diff options
author | Heiko Schocher <hs@denx.de> | 2020-07-08 10:24:00 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-08 08:49:34 -0400 |
commit | 7012865e961ca2645d783adf4b75ca4abdbfe5a7 (patch) | |
tree | f4fab3629928fefd758e2a4f6f4559f1c2225aa9 /configs | |
parent | 526fe06a5d1d96ce22cca743576945016ec4e2ef (diff) | |
download | u-boot-7012865e961ca2645d783adf4b75ca4abdbfe5a7.tar.gz u-boot-7012865e961ca2645d783adf4b75ca4abdbfe5a7.tar.xz u-boot-7012865e961ca2645d783adf4b75ca4abdbfe5a7.zip |
gpio: fix test.py for gpio label lookup
commit 2bd261dd1712 ("gpio: search for gpio label if gpio is not found through bank name")
disabled DM_GPIO_LOOKUP_LABEL which is needed
in sandbox defconfigs, as we have tests for this
functionality.
Signed-off-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/sandbox64_defconfig | 1 | ||||
-rw-r--r-- | configs/sandbox_defconfig | 1 | ||||
-rw-r--r-- | configs/sandbox_flattree_defconfig | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/configs/sandbox64_defconfig b/configs/sandbox64_defconfig index 5fe1934ae4..ac604b57b6 100644 --- a/configs/sandbox64_defconfig +++ b/configs/sandbox64_defconfig @@ -99,6 +99,7 @@ CONFIG_DM_DEMO_SHAPE=y CONFIG_BOARD=y CONFIG_BOARD_SANDBOX=y CONFIG_GPIO_HOG=y +CONFIG_DM_GPIO_LOOKUP_LABEL=y CONFIG_PM8916_GPIO=y CONFIG_SANDBOX_GPIO=y CONFIG_I2C_CROS_EC_TUNNEL=y diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig index 57218ac2df..8cf2ad5fe4 100644 --- a/configs/sandbox_defconfig +++ b/configs/sandbox_defconfig @@ -117,6 +117,7 @@ CONFIG_DMA=y CONFIG_DMA_CHANNELS=y CONFIG_SANDBOX_DMA=y CONFIG_GPIO_HOG=y +CONFIG_DM_GPIO_LOOKUP_LABEL=y CONFIG_PM8916_GPIO=y CONFIG_SANDBOX_GPIO=y CONFIG_DM_HWSPINLOCK=y diff --git a/configs/sandbox_flattree_defconfig b/configs/sandbox_flattree_defconfig index 9fe4c9dcf0..dfcc43532a 100644 --- a/configs/sandbox_flattree_defconfig +++ b/configs/sandbox_flattree_defconfig @@ -84,6 +84,7 @@ CONFIG_DM_DEMO_SHAPE=y CONFIG_BOARD=y CONFIG_BOARD_SANDBOX=y CONFIG_GPIO_HOG=y +CONFIG_DM_GPIO_LOOKUP_LABEL=y CONFIG_PM8916_GPIO=y CONFIG_SANDBOX_GPIO=y CONFIG_I2C_CROS_EC_TUNNEL=y |