Skip to content

Commit b1781d0

Browse files
rddunlapchanwoochoi
authored andcommitted
extcon: max8997: select IRQ_DOMAIN instead of depending on it
IRQ_DOMAIN is a hidden (not user visible) symbol. Users cannot set it directly thru "make *config", so drivers should select it instead of depending on it if they need it. Relying on it being set for a dependency is risky. Consistently using "select" or "depends on" can also help reduce Kconfig circular dependency issues. Therefore, change EXTCON_MAX8997's use of "depends on" for IRQ_DOMAIN to "select". Link: https://lore.kernel.org/lkml/[email protected]/ Fixes: dca1a71 ("extcon: Add support irq domain for MAX8997 muic") Signed-off-by: Randy Dunlap <[email protected]> Acked-by: Arnd Bergmann <[email protected]> Signed-off-by: Chanwoo Choi <[email protected]>
1 parent 217f036 commit b1781d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/extcon/Kconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ config EXTCON_MAX77843
116116

117117
config EXTCON_MAX8997
118118
tristate "Maxim MAX8997 EXTCON Support"
119-
depends on MFD_MAX8997 && IRQ_DOMAIN
119+
depends on MFD_MAX8997
120+
select IRQ_DOMAIN
120121
help
121122
If you say yes here you get support for the MUIC device of
122123
Maxim MAX8997 PMIC. The MAX8997 MUIC is a USB port accessory

0 commit comments

Comments
 (0)