Skip to content

Commit bd6d417

Browse files
Mike Arthurbroonie
Mike Arthur
authored andcommittedAug 18, 2009
ASoC: Add WM8711 CODEC driver
The WM8711 or WM8711L (WM8711/L) is a low power stereo DAC with an integrated headphone driver. The WM8711/L is designed specifically for portable MP3 audio and speech players. The WM8711/L is also ideal for MD, CD machines and DAT players. Signed-off-by: Mike Arthur <Mike.Arthur@wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
1 parent 07a2039 commit bd6d417

File tree

4 files changed

+733
-0
lines changed

4 files changed

+733
-0
lines changed
 

‎sound/soc/codecs/Kconfig

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ config SND_SOC_ALL_CODECS
2929
select SND_SOC_WM8400 if MFD_WM8400
3030
select SND_SOC_WM8510 if SND_SOC_I2C_AND_SPI
3131
select SND_SOC_WM8580 if I2C
32+
select SND_SOC_WM8711 if I2C
3233
select SND_SOC_WM8728 if SND_SOC_I2C_AND_SPI
3334
select SND_SOC_WM8731 if SND_SOC_I2C_AND_SPI
3435
select SND_SOC_WM8750 if SND_SOC_I2C_AND_SPI
@@ -120,6 +121,9 @@ config SND_SOC_WM8510
120121
config SND_SOC_WM8580
121122
tristate
122123

124+
config SND_SOC_WM8711
125+
tristate
126+
123127
config SND_SOC_WM8728
124128
tristate
125129

‎sound/soc/codecs/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ snd-soc-wm8350-objs := wm8350.o
1717
snd-soc-wm8400-objs := wm8400.o
1818
snd-soc-wm8510-objs := wm8510.o
1919
snd-soc-wm8580-objs := wm8580.o
20+
snd-soc-wm8711-objs := wm8711.o
2021
snd-soc-wm8728-objs := wm8728.o
2122
snd-soc-wm8731-objs := wm8731.o
2223
snd-soc-wm8750-objs := wm8750.o
@@ -48,6 +49,7 @@ obj-$(CONFIG_SND_SOC_WM8350) += snd-soc-wm8350.o
4849
obj-$(CONFIG_SND_SOC_WM8400) += snd-soc-wm8400.o
4950
obj-$(CONFIG_SND_SOC_WM8510) += snd-soc-wm8510.o
5051
obj-$(CONFIG_SND_SOC_WM8580) += snd-soc-wm8580.o
52+
obj-$(CONFIG_SND_SOC_WM8711) += snd-soc-wm8711.o
5153
obj-$(CONFIG_SND_SOC_WM8728) += snd-soc-wm8728.o
5254
obj-$(CONFIG_SND_SOC_WM8731) += snd-soc-wm8731.o
5355
obj-$(CONFIG_SND_SOC_WM8750) += snd-soc-wm8750.o

0 commit comments

Comments
 (0)
Please sign in to comment.