summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-08-25 15:19:14 +0300
committerTom Rini <trini@konsulko.com>2020-08-25 15:19:14 +0300
commite49a9d4ddb10f0047ba0f292e0eb9f07a8f6f5f0 (patch)
tree697ae751162dfe10400128eb960a6c178479fd2d /board
parent078656186f1037894c45682ca74d0921de8a7010 (diff)
parentb5b81f2490628650137c9fee3679c995f5fac757 (diff)
downloadu-boot-e49a9d4ddb10f0047ba0f292e0eb9f07a8f6f5f0.tar.xz
Merge tag 'u-boot-rockchip-20200820' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip
- Fix rk3399 evb sdcard support - Fix for SPL_LED support
Diffstat (limited to 'board')
-rw-r--r--board/firefly/firefly-rk3288/firefly-rk3288.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/board/firefly/firefly-rk3288/firefly-rk3288.c b/board/firefly/firefly-rk3288/firefly-rk3288.c
index 1965985a0f..bd8a32cf7b 100644
--- a/board/firefly/firefly-rk3288/firefly-rk3288.c
+++ b/board/firefly/firefly-rk3288/firefly-rk3288.c
@@ -5,9 +5,11 @@
#include <common.h>
#include <hang.h>
+#include <led.h>
#include <log.h>
#ifdef CONFIG_SPL_BUILD
+DECLARE_GLOBAL_DATA_PTR;
static int setup_led(void)
{
#ifdef CONFIG_SPL_LED
@@ -23,7 +25,7 @@ static int setup_led(void)
debug("%s: get=%d\n", __func__, ret);
return ret;
}
- ret = led_set_on(dev, 1);
+ ret = led_set_state(dev, LEDST_ON);
if (ret)
return ret;
#endif