On Fri, 22 Oct 2021 at 15:06, Andreas Schwab <schwab@xxxxxxxxxxxxxx> wrote: > On Okt 21 2021, Emil Renner Berthing wrote: > > > +config RESET_STARFIVE_JH7100 > > + bool "StarFive JH7100 Reset Driver" > > + depends on SOC_STARFIVE || COMPILE_TEST > > Why does it need to depend on SOC_STARFIVE? It strictly doesn't but most other drivers in the same Kconfig file also depends on ARCH_something or SOC_something. In particular RESET_K210 depends on SOC_CANAAN. I think this is to prevent overwhelming the user with useless choices if they didn't enable the relevant SoC, and for others there are the COMPILE_TEST option. /Emil