Commit 05f0430f authored by Lukas Wunner's avatar Lukas Wunner Committed by Ulf Hansson

mmc: pwrseq_sd8787: Allow being built-in irrespective of dependencies

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: default avatarLukas Wunner <lukas@wunner.de>
Cc: Matt Ranostay <matt@ranostay.consulting>
Cc: Lubomir Rintel <lkundrak@v3.sk>
Cc: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/8bb3d7c3a36985e030ba40e853c57578de8fb303.1673866725.git.lukas@wunner.deSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 67111206
...@@ -15,7 +15,7 @@ config PWRSEQ_EMMC ...@@ -15,7 +15,7 @@ config PWRSEQ_EMMC
config PWRSEQ_SD8787 config PWRSEQ_SD8787
tristate "HW reset support for SD8787 BT + Wifi module" 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 help
This selects hardware reset support for the SD8787 BT + Wifi This selects hardware reset support for the SD8787 BT + Wifi
module. By default this option is set to n. module. By default this option is set to n.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment