diff options
author | Caleb Connolly <caleb.connolly@linaro.org> | 2024-01-15 18:03:17 +0000 |
---|---|---|
committer | Caleb Connolly <caleb.connolly@linaro.org> | 2024-01-16 12:26:54 +0000 |
commit | 4c3dfa1b8babf9fc0575ce08eed99f950d3bab84 (patch) | |
tree | 1d47cb67844ed6e7f018b6ca10187fe5a66103c8 | |
parent | 4d6d25be5f7bcdc2d722972bff977aff2f91223c (diff) | |
download | u-boot-4c3dfa1b8babf9fc0575ce08eed99f950d3bab84.tar.gz u-boot-4c3dfa1b8babf9fc0575ce08eed99f950d3bab84.tar.bz2 u-boot-4c3dfa1b8babf9fc0575ce08eed99f950d3bab84.zip |
sandbox_flattree: enable button support
sandbox_flattree enables QCOM_PMIC_GPIO which now depends on BUTTON. As
a result the button tests now get run, but fail because the ADC and GPIO
button drivers aren't enabled.
Enable them to run the tests for sandbox_flattree.
Reported-by: Neil Armstrong <neil.armstrong@linaro.org>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
-rw-r--r-- | configs/sandbox_flattree_defconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/sandbox_flattree_defconfig b/configs/sandbox_flattree_defconfig index 1bd91097a5..36f384b07d 100644 --- a/configs/sandbox_flattree_defconfig +++ b/configs/sandbox_flattree_defconfig @@ -101,6 +101,9 @@ CONFIG_SYS_ATA_DATA_OFFSET=0 CONFIG_SYS_ATA_REG_OFFSET=1 CONFIG_SYS_ATA_ALT_OFFSET=2 CONFIG_SYS_ATA_IDE0_OFFSET=0 +CONFIG_BUTTON=y +CONFIG_BUTTON_ADC=y +CONFIG_BUTTON_GPIO=y CONFIG_CLK=y CONFIG_CLK_COMPOSITE_CCF=y CONFIG_CLK_K210=y |