diff options
author | Krzysztof Helt <krzysztof.h1@wp.pl> | 2007-08-10 06:04:42 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 09:58:38 -0400 |
commit | ab9914f840be0938587fd3134a9877fb9d024173 (patch) | |
tree | 28517c1e7ba9e5a1718edb86ea6bb0f65935471e /sound/isa/cs423x | |
parent | 0e75182cf34ab7f7f1d88c1231fcc04780a7dc7d (diff) |
[ALSA] isa libs Makefiles cleanup
This patch uses the Kconfig parameters SND_AD1848_LIB and
SND_CS4231_LIB instead of mentioning each driver that requires
the ad1848-lib or cs4231-lib separately in the Makefiles.
Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/isa/cs423x')
-rw-r--r-- | sound/isa/cs423x/Makefile | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/sound/isa/cs423x/Makefile b/sound/isa/cs423x/Makefile index 2fb4f7409d7c..713649626863 100644 --- a/sound/isa/cs423x/Makefile +++ b/sound/isa/cs423x/Makefile | |||
@@ -10,17 +10,8 @@ snd-cs4232-objs := cs4232.o | |||
10 | snd-cs4236-objs := cs4236.o | 10 | snd-cs4236-objs := cs4236.o |
11 | 11 | ||
12 | # Toplevel Module Dependency | 12 | # Toplevel Module Dependency |
13 | obj-$(CONFIG_SND_AZT2320) += snd-cs4231-lib.o | 13 | obj-$(CONFIG_SND_CS4231_LIB) += snd-cs4231-lib.o |
14 | obj-$(CONFIG_SND_MIRO) += snd-cs4231-lib.o | 14 | obj-$(CONFIG_SND_CS4231) += snd-cs4231.o |
15 | obj-$(CONFIG_SND_OPL3SA2) += snd-cs4231-lib.o | 15 | obj-$(CONFIG_SND_CS4232) += snd-cs4232.o |
16 | obj-$(CONFIG_SND_CS4231) += snd-cs4231.o snd-cs4231-lib.o | 16 | obj-$(CONFIG_SND_CS4236) += snd-cs4236.o snd-cs4236-lib.o |
17 | obj-$(CONFIG_SND_CS4232) += snd-cs4232.o snd-cs4231-lib.o | ||
18 | obj-$(CONFIG_SND_CS4236) += snd-cs4236.o snd-cs4236-lib.o snd-cs4231-lib.o | ||
19 | obj-$(CONFIG_SND_GUSMAX) += snd-cs4231-lib.o | ||
20 | obj-$(CONFIG_SND_INTERWAVE) += snd-cs4231-lib.o | ||
21 | obj-$(CONFIG_SND_INTERWAVE_STB) += snd-cs4231-lib.o | ||
22 | obj-$(CONFIG_SND_OPTI92X_CS4231) += snd-cs4231-lib.o | ||
23 | obj-$(CONFIG_SND_WAVEFRONT) += snd-cs4231-lib.o | ||
24 | obj-$(CONFIG_SND_SSCAPE) += snd-cs4231-lib.o | ||
25 | 17 | ||
26 | obj-m := $(sort $(obj-m)) | ||