On Mon, Sep 5, 2022, at 11:20 PM, Linus Walleij wrote: > On Mon, Sep 5, 2022 at 3:53 PM Arnd Bergmann <arnd@xxxxxxxx> wrote: > > I have a kismet warning that sometimes this selecting PINCTRL_IMX > is inconsistens since it depends on OF and apparently there are > now non-OF configs compiling it. So could the real problem be > that everything selecting PINCTRL_IMX should depend on OF > too? Ah right, that sounds the like the root cause. Yes, you either have to make sure it's possible to build PINCTRL_IMX without CONFIG_OF, or have everything that selects it have an OF dependency. If a select statement in Kconfig hits a missing dependency, it does not follow the indirect 'select' statements from that. Arnd