mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
board: stm32mp1: correct CONFIG_IS_ENABLED usage for LED
Use the correct macro to test presence CONFIG_LED: replace CONFIG_IS_ENABLED(CONFIG_LED) by CONFIG_IS_ENABLED(LED) Issue see during review unrelated patch "board: stm32mp1: update management of boot-led" http://patchwork.ozlabs.org/patch/1264823/ Cc: Marek Vasut <marex@denx.de> Cc: Patrice Chotard <patrice.chotard@st.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Reviewed-by: Marek Vasut <marex@denx.de> Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
This commit is contained in:
parent
c5f3c63fb4
commit
71ba2cb0d6
2 changed files with 2 additions and 2 deletions
|
@ -450,7 +450,7 @@ int board_init(void)
|
|||
|
||||
board_init_fmc2();
|
||||
|
||||
if (CONFIG_IS_ENABLED(CONFIG_LED))
|
||||
if (CONFIG_IS_ENABLED(LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -647,7 +647,7 @@ int board_init(void)
|
|||
|
||||
sysconf_init();
|
||||
|
||||
if (CONFIG_IS_ENABLED(CONFIG_LED))
|
||||
if (CONFIG_IS_ENABLED(LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue