mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
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>
19 lines
405 B
Makefile
19 lines
405 B
Makefile
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@suse.cz>
|
|
#
|
|
|
|
snd-ac97-codec-objs := ac97_codec.o ac97_pcm.o ac97_patch.o
|
|
|
|
ifneq ($(CONFIG_PROC_FS),)
|
|
snd-ac97-codec-objs += ac97_proc.o
|
|
endif
|
|
|
|
snd-ak4531-codec-objs := ak4531_codec.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_AC97_CODEC) += snd-ac97-codec.o
|
|
obj-$(CONFIG_SND_ENS1370) += snd-ak4531-codec.o
|
|
|
|
obj-m := $(sort $(obj-m))
|