-
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 builds the Samsung S3C24xx audio DMA and I2S drivers. Signed-off-by: Graeme Gregory <gg@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
- Loading branch information
Graeme Gregory
authored and
Jaroslav Kysela
committed
May 11, 2007
1 parent
c0f41bb
commit 86e1f0d
Showing
4 changed files
with
24 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/ at91/ pxa/ | ||
obj-$(CONFIG_SND_SOC) += codecs/ at91/ pxa/ s3c24xx/ |
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,16 @@ | ||
menu "SoC Audio for the Samsung S3C24XX" | ||
|
||
config SND_S3C24XX_SOC | ||
tristate "SoC Audio for the Samsung S3C24XX chips" | ||
depends on ARCH_S3C2410 && SND | ||
select SND_PCM | ||
help | ||
Say Y or M if you want to add support for codecs attached to | ||
the S3C24XX AC97, I2S or SSP interface. You will also need | ||
to select the audio interfaces to support below. | ||
|
||
config SND_S3C24XX_SOC_I2S | ||
tristate | ||
|
||
endmenu | ||
|
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,6 @@ | ||
# S3c24XX Platform Support | ||
snd-soc-s3c24xx-objs := s3c24xx-pcm.o | ||
snd-soc-s3c24xx-i2s-objs := s3c24xx-i2s.o | ||
|
||
obj-$(CONFIG_SND_S3C24XX_SOC) += snd-soc-s3c24xx.o | ||
obj-$(CONFIG_SND_S3C24XX_SOC_I2S) += snd-soc-s3c24xx-i2s.o |