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:
Patrick Delaunay 2020-04-10 19:14:01 +02:00 committed by Patrice Chotard
parent c5f3c63fb4
commit 71ba2cb0d6
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;