aboutsummaryrefslogtreecommitdiffstats
path: root/sound/arm
diff options
context:
space:
mode:
authorRussell King <rmk+lkml@arm.linux.org.uk>2005-09-06 18:16:52 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-07 19:57:22 -0400
commitc92371566ea505cf455c208cdfb89046b3db87de (patch)
treed3f2871a9f1aeae2955b186e77b59f4b54562700 /sound/arm
parenta2822e7f00cdccbff8e507b5ebbddce1aa95eb5d (diff)
[PATCH] Fix sound/arm/Makefile for locality of reference
Ensure that sound/arm/Makefile is sanely organised so that additions to it don't break all other patches out there. This means I only have to adjust the line numbers in my patch queue rather than having to re-generate by hand those which touch this file. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/arm')
-rw-r--r--sound/arm/Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/sound/arm/Makefile b/sound/arm/Makefile
index 103f136926d9..4ef6dd00c6ee 100644
--- a/sound/arm/Makefile
+++ b/sound/arm/Makefile
@@ -2,12 +2,14 @@
2# Makefile for ALSA 2# Makefile for ALSA
3# 3#
4 4
5snd-sa11xx-uda1341-objs := sa11xx-uda1341.o
6snd-aaci-objs := aaci.o devdma.o
7snd-pxa2xx-pcm-objs := pxa2xx-pcm.o
8snd-pxa2xx-ac97-objs := pxa2xx-ac97.o
9
10obj-$(CONFIG_SND_SA11XX_UDA1341) += snd-sa11xx-uda1341.o 5obj-$(CONFIG_SND_SA11XX_UDA1341) += snd-sa11xx-uda1341.o
6snd-sa11xx-uda1341-objs := sa11xx-uda1341.o
7
11obj-$(CONFIG_SND_ARMAACI) += snd-aaci.o 8obj-$(CONFIG_SND_ARMAACI) += snd-aaci.o
12obj-$(CONFIG_SND_PXA2XX_PCM) += snd-pxa2xx-pcm.o 9snd-aaci-objs := aaci.o devdma.o
13obj-$(CONFIG_SND_PXA2XX_AC97) += snd-pxa2xx-ac97.o 10
11obj-$(CONFIG_SND_PXA2XX_PCM) += snd-pxa2xx-pcm.o
12snd-pxa2xx-pcm-objs := pxa2xx-pcm.o
13
14obj-$(CONFIG_SND_PXA2XX_AC97) += snd-pxa2xx-ac97.o
15snd-pxa2xx-ac97-objs := pxa2xx-ac97.o