diff options
author | Matti Vaittinen <[email protected]> | 2022-11-16 10:19:21 +0200 |
---|---|---|
committer | Lee Jones <[email protected]> | 2022-12-07 13:28:15 +0000 |
commit | 85842c46fd47fa6bd78681c154223bed27d5fd19 (patch) | |
tree | 173d23950dcbed0a2788742cbb411b8d29a00071 | |
parent | 0cd1860e445f668038621aabf6c67616e6d3bb8b (diff) |
mfd: bd957x: Fix Kconfig dependency on REGMAP_IRQ
The BD957x driver uses REGMAP_IRQ but does not 'select' to depend on
it. This can cause build failures. Select REGMAP_IRQ for BD957X.
Fixes: 0e9692607f94 ("mfd: bd9576: Add IRQ support")
Signed-off-by: Matti Vaittinen <[email protected]>
Signed-off-by: Lee Jones <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
-rw-r--r-- | drivers/mfd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 6653d03e0fe3..d6f1b0d3d829 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -2017,6 +2017,7 @@ config MFD_ROHM_BD957XMUF depends on I2C=y depends on OF select REGMAP_I2C + select REGMAP_IRQ select MFD_CORE help Select this option to get support for the ROHM BD9576MUF and |