Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

authored by

Russell King and committed by
Linus Torvalds
c9237156 a2822e7f

+9 -7
+9 -7
sound/arm/Makefile
··· 2 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 5 obj-$(CONFIG_SND_SA11XX_UDA1341) += snd-sa11xx-uda1341.o 6 + snd-sa11xx-uda1341-objs := sa11xx-uda1341.o 7 + 11 8 obj-$(CONFIG_SND_ARMAACI) += snd-aaci.o 12 - obj-$(CONFIG_SND_PXA2XX_PCM) += snd-pxa2xx-pcm.o 13 - obj-$(CONFIG_SND_PXA2XX_AC97) += snd-pxa2xx-ac97.o 9 + snd-aaci-objs := aaci.o devdma.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