mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
rockchip: firefly-rk3288: Fix the code support for SPL_LED
Fix the build error for the wrong code when CONFIG_SPL_LED is enabled. Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
e2f8ba8a5f
commit
b5b81f2490
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue