Skip to content

Commit

Permalink
mmc: pwrseq_sd8787: Allow being built-in irrespective of dependencies
Browse files Browse the repository at this point in the history
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 <[email protected]>
Cc: Matt Ranostay <[email protected]>
Cc: Lubomir Rintel <[email protected]>
Cc: Claudiu Beznea <[email protected]>
Link: https://lore.kernel.org/r/8bb3d7c3a36985e030ba40e853c57578de8fb303.1673866725.git.lukas@wunner.de
Signed-off-by: Ulf Hansson <[email protected]>
  • Loading branch information
l1k authored and storulf committed Jan 23, 2023
1 parent 6711120 commit 05f0430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mmc/core/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 05f0430

Please sign in to comment.