Dear Anatolij > From: Anatolij Gustschin <ag...@denx.de> > Sent: mercredi 1 avril 2020 13:43 > > Hi Patrick, > > On Tue, 31 Mar 2020 18:04:25 +0200 > Patrick Delaunay patrick.delau...@st.com wrote: > ... > > @@ -648,8 +652,10 @@ int board_init(void) > > > > sysconf_init(); > > > > - if (CONFIG_IS_ENABLED(CONFIG_LED)) > > + if (CONFIG_IS_ENABLED(CONFIG_LED)) { > > led_default_state(); > > Did you verify that this works like expected? We either use > if (CONFIG_IS_ENABLED(LED)) > or > if (IS_ENABLED(CONFIG_LED)) > > Please check.
You are right: it is not working. I had already make this error, I will solve the issue a in separate patch (also impacting dh_stm32mp1). Thanks for review. > -- > Anatolij Patrick