diff options
Diffstat (limited to 'sound/soc/s3c24xx')
-rw-r--r-- | sound/soc/s3c24xx/Kconfig | 16 | ||||
-rw-r--r-- | sound/soc/s3c24xx/Makefile | 6 |
2 files changed, 22 insertions, 0 deletions
diff --git a/sound/soc/s3c24xx/Kconfig b/sound/soc/s3c24xx/Kconfig new file mode 100644 index 000000000000..433da9f854af --- /dev/null +++ b/sound/soc/s3c24xx/Kconfig | |||
@@ -0,0 +1,16 @@ | |||
1 | menu "SoC Audio for the Samsung S3C24XX" | ||
2 | |||
3 | config SND_S3C24XX_SOC | ||
4 | tristate "SoC Audio for the Samsung S3C24XX chips" | ||
5 | depends on ARCH_S3C2410 && SND | ||
6 | select SND_PCM | ||
7 | help | ||
8 | Say Y or M if you want to add support for codecs attached to | ||
9 | the S3C24XX AC97, I2S or SSP interface. You will also need | ||
10 | to select the audio interfaces to support below. | ||
11 | |||
12 | config SND_S3C24XX_SOC_I2S | ||
13 | tristate | ||
14 | |||
15 | endmenu | ||
16 | |||
diff --git a/sound/soc/s3c24xx/Makefile b/sound/soc/s3c24xx/Makefile new file mode 100644 index 000000000000..6f0fffcb30f5 --- /dev/null +++ b/sound/soc/s3c24xx/Makefile | |||
@@ -0,0 +1,6 @@ | |||
1 | # S3c24XX Platform Support | ||
2 | snd-soc-s3c24xx-objs := s3c24xx-pcm.o | ||
3 | snd-soc-s3c24xx-i2s-objs := s3c24xx-i2s.o | ||
4 | |||
5 | obj-$(CONFIG_SND_S3C24XX_SOC) += snd-soc-s3c24xx.o | ||
6 | obj-$(CONFIG_SND_S3C24XX_SOC_I2S) += snd-soc-s3c24xx-i2s.o | ||