e1036502e5
Commit 2d4ba4a3b9
introduced a dependency
that was never meant to exist when the ac97_bus.c module was created.
Move ac97_bus.c up the directory hierarchy to make sure it is built when
selected even if sound is configured out so things work as originally
intended.
Signed-off-by: Nicolas Pitre <nico@cam.org>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
18 lines
505 B
Makefile
18 lines
505 B
Makefile
# Makefile for the Linux sound card driver
|
|
#
|
|
|
|
obj-$(CONFIG_SOUND) += soundcore.o
|
|
obj-$(CONFIG_SOUND_PRIME) += sound_firmware.o
|
|
obj-$(CONFIG_SOUND_PRIME) += oss/
|
|
obj-$(CONFIG_DMASOUND) += oss/
|
|
obj-$(CONFIG_SND) += core/ i2c/ drivers/ isa/ pci/ ppc/ arm/ synth/ usb/ sparc/ parisc/ pcmcia/ mips/
|
|
obj-$(CONFIG_SND_AOA) += aoa/
|
|
|
|
# This one must be compilable even if sound is configured out
|
|
obj-$(CONFIG_AC97_BUS) += ac97_bus.o
|
|
|
|
ifeq ($(CONFIG_SND),y)
|
|
obj-y += last.o
|
|
endif
|
|
|
|
soundcore-objs := sound_core.o
|