diff options
author | Richard Fitzgerald <rf@opensource.wolfsonmicro.com> | 2015-11-03 18:08:32 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-12-04 11:46:39 +0300 |
commit | ea1f3339909d8973b41f09ef7275d7e49974b910 (patch) | |
tree | 447880e598c773340007478d996922273db261af /drivers/mfd/Makefile | |
parent | 9a65a6d3cbeeb4429b3bdff6404fca0b98fb8222 (diff) | |
download | linux-ea1f3339909d8973b41f09ef7275d7e49974b910.tar.xz |
mfd: arizona: Support Cirrus Logic CS47L24 and WM1831
This patch adds the regmap configuration tables and
core MFD handling for the CS47L24 and WM1831 codecs.
Note that compared to the other Arizona codecs, these devices
do not have an LDO1 or micsupp regulators, extcon driver, or
the DCVDD isolation control.
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/Makefile')
-rw-r--r-- | drivers/mfd/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile index 99f93ab26348..0f230a6103f8 100644 --- a/drivers/mfd/Makefile +++ b/drivers/mfd/Makefile @@ -51,6 +51,9 @@ endif ifeq ($(CONFIG_MFD_WM8998),y) obj-$(CONFIG_MFD_ARIZONA) += wm8998-tables.o endif +ifeq ($(CONFIG_MFD_CS47L24),y) +obj-$(CONFIG_MFD_ARIZONA) += cs47l24-tables.o +endif obj-$(CONFIG_MFD_WM8400) += wm8400-core.o wm831x-objs := wm831x-core.o wm831x-irq.o wm831x-otp.o wm831x-objs += wm831x-auxadc.o |