diff options
author | Artem Savkov <asavkov@redhat.com> | 2015-03-05 12:42:27 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-03-12 09:06:54 +0000 |
commit | 23a2a22a3f3f17de094f386a893f7047c10e44a0 (patch) | |
tree | 943004f5fc6de1e6de88f926a67c0ed55e82fc8d /drivers/mfd | |
parent | ed05be56643e3420037c5f3854bed249b4f2f758 (diff) | |
download | linux-23a2a22a3f3f17de094f386a893f7047c10e44a0.tar.bz2 |
mfd: rt5033: MFD_RT5033 needs to select REGMAP_IRQ
Since commit 0b2712585(linux-next.git) this driver uses regmap_irq and so needs
to select REGMAP_IRQ.
This fixes the following compilation errors:
ERROR: "regmap_irq_get_domain" [drivers/mfd/rt5033.ko] undefined!
ERROR: "regmap_add_irq_chip" [drivers/mfd/rt5033.ko] undefined!
Signed-off-by: Artem Savkov <asavkov@redhat.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-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 f8ef77d9ac1f..f49f404c2004 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -680,6 +680,7 @@ config MFD_RT5033 depends on I2C=y select MFD_CORE select REGMAP_I2C + select REGMAP_IRQ help This driver provides for the Richtek RT5033 Power Management IC, which includes the I2C driver and the Core APIs. This driver provides |