diff options
author | Michael Heimpold <mhei@heimpold.de> | 2018-10-29 20:21:51 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-01-01 14:12:18 +0100 |
commit | 49cc1646f389dba391394c6c69b0dc0108f52047 (patch) | |
tree | 73cf6c6eecdc2340eaa5dad47a6744bfa03928d4 /configs | |
parent | a2e99a71b258d67f421ed84a83c866cb45578679 (diff) | |
download | u-boot-49cc1646f389dba391394c6c69b0dc0108f52047.tar.gz u-boot-49cc1646f389dba391394c6c69b0dc0108f52047.tar.bz2 u-boot-49cc1646f389dba391394c6c69b0dc0108f52047.zip |
configs: mx23_olinuxino_defconfig: fix status led definition
While migrating individual status led usages to Kconfig stuff,
a (random) value was introduced for this board which does not
work but produces the following error message during boot:
__led_init: failed requesting GPIO59!
Since Kconfig does not seem to accept a define as this point,
but the mxs gpio driver requires not only a simple integer value,
we need to use the plain value of MX23_PAD_SSP1_DETECT__GPIO_2_1.
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
Fixes: 2d8d190c8394 ("status_led: Kconfig migration")
Diffstat (limited to 'configs')
-rw-r--r-- | configs/mx23_olinuxino_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/mx23_olinuxino_defconfig b/configs/mx23_olinuxino_defconfig index 2eee19dab5..bc34a3ed01 100644 --- a/configs/mx23_olinuxino_defconfig +++ b/configs/mx23_olinuxino_defconfig @@ -27,7 +27,7 @@ CONFIG_ENV_IS_IN_MMC=y CONFIG_LED_STATUS=y CONFIG_LED_STATUS_GPIO=y CONFIG_LED_STATUS0=y -CONFIG_LED_STATUS_BIT=59 +CONFIG_LED_STATUS_BIT=778 CONFIG_LED_STATUS_STATE=2 CONFIG_LED_STATUS_BOOT_ENABLE=y CONFIG_LED_STATUS_BOOT=0 |