diff options
author | Liam Girdwood <liam.girdwood@wolfsonmicro.com> | 2006-10-12 08:34:32 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-09 03:00:50 -0500 |
commit | 734c2d4bb7cfccaab79923331efc7422e4e76a8a (patch) | |
tree | 1d9e8874ac555fab5f3afcf0dc96fd6eff7c36e6 /sound/soc/pxa/Makefile | |
parent | 6e24dd9310b66d6f500a81ee320a8babec529573 (diff) |
[ALSA] ASoC pxa2xx build support
This patch builds ASoC pxa2xx support for Corgi, Spitz, Tosa and Poodle
Zaurus machines.
From: Liam Girdwood <liam.girdwood@wolfsonmicro.com>
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>
Diffstat (limited to 'sound/soc/pxa/Makefile')
-rw-r--r-- | sound/soc/pxa/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sound/soc/pxa/Makefile b/sound/soc/pxa/Makefile new file mode 100644 index 000000000000..78e0d6b07d1d --- /dev/null +++ b/sound/soc/pxa/Makefile | |||
@@ -0,0 +1,20 @@ | |||
1 | # PXA Platform Support | ||
2 | snd-soc-pxa2xx-objs := pxa2xx-pcm.o | ||
3 | snd-soc-pxa2xx-ac97-objs := pxa2xx-ac97.o | ||
4 | snd-soc-pxa2xx-i2s-objs := pxa2xx-i2s.o | ||
5 | |||
6 | obj-$(CONFIG_SND_PXA2XX_SOC) += snd-soc-pxa2xx.o | ||
7 | obj-$(CONFIG_SND_PXA2XX_SOC_AC97) += snd-soc-pxa2xx-ac97.o | ||
8 | obj-$(CONFIG_SND_PXA2XX_SOC_I2S) += snd-soc-pxa2xx-i2s.o | ||
9 | |||
10 | # PXA Machine Support | ||
11 | snd-soc-corgi-objs := corgi.o | ||
12 | snd-soc-poodle-objs := poodle.o | ||
13 | snd-soc-tosa-objs := tosa.o | ||
14 | snd-soc-spitz-objs := spitz.o | ||
15 | |||
16 | obj-$(CONFIG_SND_PXA2XX_SOC_CORGI) += snd-soc-corgi.o | ||
17 | obj-$(CONFIG_SND_PXA2XX_SOC_POODLE) += snd-soc-poodle.o | ||
18 | obj-$(CONFIG_SND_PXA2XX_SOC_TOSA) += snd-soc-tosa.o | ||
19 | obj-$(CONFIG_SND_PXA2XX_SOC_SPITZ) += snd-soc-spitz.o | ||
20 | |||