-
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.
- Loading branch information
Dong Aisheng
authored and
Mark Brown
committed
Jul 28, 2011
1 parent
9ef4357
commit b7ca4fa
Showing
5 changed files
with
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: fcb5e47eff29a10e9cbc55a7660746695e303671 | ||
refs/heads/master: 009ad054b71b77264157c70c58654543acc0c566 |
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
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,20 @@ | ||
menuconfig SND_MXS_SOC | ||
tristate "SoC Audio for Freescale MXS CPUs" | ||
depends on ARCH_MXS | ||
select SND_PCM | ||
help | ||
Say Y or M if you want to add support for codecs attached to | ||
the MXS SAIF interface. | ||
|
||
|
||
if SND_MXS_SOC | ||
|
||
config SND_SOC_MXS_SGTL5000 | ||
tristate "SoC Audio support for i.MX boards with sgtl5000" | ||
depends on I2C | ||
select SND_SOC_SGTL5000 | ||
help | ||
Say Y if you want to add support for SoC audio on an MXS board with | ||
a sgtl5000 codec. | ||
|
||
endif # SND_MXS_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,10 @@ | ||
# MXS Platform Support | ||
snd-soc-mxs-objs := mxs-saif.o | ||
snd-soc-mxs-pcm-objs := mxs-pcm.o | ||
|
||
obj-$(CONFIG_SND_MXS_SOC) += snd-soc-mxs.o snd-soc-mxs-pcm.o | ||
|
||
# i.MX Machine Support | ||
snd-soc-mxs-sgtl5000-objs := mxs-sgtl5000.o | ||
|
||
obj-$(CONFIG_SND_SOC_MXS_SGTL5000) += snd-soc-mxs-sgtl5000.o |