aboutsummaryrefslogtreecommitdiffstats
path: root/sound/aoa/Makefile
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2006-07-10 04:44:35 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-10 13:24:19 -0700
commita08bc4cb09dfea4cb1d29061d82b04338ed7c21a (patch)
tree3cb4020c56518f44597c536b26f1fdce7272d9d6 /sound/aoa/Makefile
parent[PATCH] aoa: i2sbus: fix for PowerMac7,2 and 7,3 (diff)
downloadlinux-dev-a08bc4cb09dfea4cb1d29061d82b04338ed7c21a.tar.xz
linux-dev-a08bc4cb09dfea4cb1d29061d82b04338ed7c21a.zip
[PATCH] aoa: fix when all is built into the kernel
This patch fixes initialisation issues when all of aoa is built into the kernel by re-ordering the link order in the Makefile and making the soundbus use subsys_initcall so it is initialised earlier. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound/aoa/Makefile')
-rw-r--r--sound/aoa/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/aoa/Makefile b/sound/aoa/Makefile
index d8de3e7df48d..a8c037f908f8 100644
--- a/sound/aoa/Makefile
+++ b/sound/aoa/Makefile
@@ -1,4 +1,4 @@
obj-$(CONFIG_SND_AOA) += core/
-obj-$(CONFIG_SND_AOA) += codecs/
-obj-$(CONFIG_SND_AOA) += fabrics/
obj-$(CONFIG_SND_AOA_SOUNDBUS) += soundbus/
+obj-$(CONFIG_SND_AOA) += fabrics/
+obj-$(CONFIG_SND_AOA) += codecs/