diff options
author | Russell King <rmk+lkml@arm.linux.org.uk> | 2005-09-06 18:16:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 19:57:22 -0400 |
commit | c92371566ea505cf455c208cdfb89046b3db87de (patch) | |
tree | d3f2871a9f1aeae2955b186e77b59f4b54562700 /sound/arm | |
parent | a2822e7f00cdccbff8e507b5ebbddce1aa95eb5d (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/Makefile | 16 |
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 | ||
5 | snd-sa11xx-uda1341-objs := sa11xx-uda1341.o | ||
6 | snd-aaci-objs := aaci.o devdma.o | ||
7 | snd-pxa2xx-pcm-objs := pxa2xx-pcm.o | ||
8 | snd-pxa2xx-ac97-objs := pxa2xx-ac97.o | ||
9 | |||
10 | obj-$(CONFIG_SND_SA11XX_UDA1341) += snd-sa11xx-uda1341.o | 5 | obj-$(CONFIG_SND_SA11XX_UDA1341) += snd-sa11xx-uda1341.o |
6 | snd-sa11xx-uda1341-objs := sa11xx-uda1341.o | ||
7 | |||
11 | obj-$(CONFIG_SND_ARMAACI) += snd-aaci.o | 8 | obj-$(CONFIG_SND_ARMAACI) += snd-aaci.o |
12 | obj-$(CONFIG_SND_PXA2XX_PCM) += snd-pxa2xx-pcm.o | 9 | snd-aaci-objs := aaci.o devdma.o |
13 | obj-$(CONFIG_SND_PXA2XX_AC97) += snd-pxa2xx-ac97.o | 10 | |
11 | obj-$(CONFIG_SND_PXA2XX_PCM) += snd-pxa2xx-pcm.o | ||
12 | snd-pxa2xx-pcm-objs := pxa2xx-pcm.o | ||
13 | |||
14 | obj-$(CONFIG_SND_PXA2XX_AC97) += snd-pxa2xx-ac97.o | ||
15 | snd-pxa2xx-ac97-objs := pxa2xx-ac97.o | ||