-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch adds an ASoC Makefile and Kconfig for the WM8731, WM8750 and WM9712 codecs. Signed-off-by: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Liam Girdwood <liam.girdwood@wolfsonmicro.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
- Loading branch information
Richard Purdie
authored and
Jaroslav Kysela
committed
Feb 9, 2007
1 parent
dbc6b6a
commit 7f137ab
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
snd-soc-core-objs := soc-core.o soc-dapm.o | ||
|
||
obj-$(CONFIG_SND_SOC) += snd-soc-core.o | ||
|
||
obj-$(CONFIG_SND_SOC) += codecs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
config SND_SOC_AC97_CODEC | ||
tristate | ||
depends SND_SOC | ||
|
||
config SND_SOC_WM8731 | ||
tristate | ||
depends SND_SOC | ||
|
||
config SND_SOC_WM8750 | ||
tristate | ||
depends SND_SOC | ||
|
||
config SND_SOC_WM9712 | ||
tristate | ||
depends SND_SOC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
snd-soc-ac97-objs := ac97.o | ||
snd-soc-wm8731-objs := wm8731.o | ||
snd-soc-wm8750-objs := wm8750.o | ||
snd-soc-wm9712-objs := wm9712.o | ||
|
||
obj-$(CONFIG_SND_SOC_AC97_CODEC) += snd-soc-ac97.o | ||
obj-$(CONFIG_SND_SOC_WM8731) += snd-soc-wm8731.o | ||
obj-$(CONFIG_SND_SOC_WM8750) += snd-soc-wm8750.o | ||
obj-$(CONFIG_SND_SOC_WM9712) += snd-soc-wm9712.o |