On Mon, 16 Jan 2023 at 12:15, Lukas Wunner <lukas@xxxxxxxxx> wrote: > > pwrseq_sd8787 is forced to be built as a module if its dependencies are. > > That's unnecessary, it's perfectly fine for it to be built-in even > though the wireless drivers that need it are modules. > > Relax the depends definition in Kconfig accordingly. > > Signed-off-by: Lukas Wunner <lukas@xxxxxxxxx> > Cc: Matt Ranostay <matt@ranostay.consulting> > Cc: Lubomir Rintel <lkundrak@xxxxx> > Cc: Claudiu Beznea <claudiu.beznea@xxxxxxxxxxxxx> Applied for next, thanks! Kind regards Uffe > --- > drivers/mmc/core/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mmc/core/Kconfig b/drivers/mmc/core/Kconfig > index 6f25c34e4fec..e9e9d31b39b4 100644 > --- a/drivers/mmc/core/Kconfig > +++ b/drivers/mmc/core/Kconfig > @@ -15,7 +15,7 @@ config PWRSEQ_EMMC > > config PWRSEQ_SD8787 > tristate "HW reset support for SD8787 BT + Wifi module" > - depends on OF && (MWIFIEX || BT_MRVL_SDIO || LIBERTAS_SDIO || WILC1000_SDIO) > + depends on OF && (MWIFIEX != n || BT_MRVL_SDIO != n || LIBERTAS_SDIO != n || WILC1000_SDIO != n) > help > This selects hardware reset support for the SD8787 BT + Wifi > module. By default this option is set to n. > -- > 2.39.0 >