diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-06-09 08:57:51 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-06-09 16:10:06 -0400 |
commit | 8272115578ce02566b4c6bbe45f09d0d55f4a1c6 (patch) | |
tree | 543f421931fb6ff8f1c45ed8ebce2d3b4a9737ad /sound/synth | |
parent | 0181307abc1d2eb2a0dead93870bcffadddb827c (diff) |
ALSA: synth: Select snd-emux-synth explicitly
Instead of the non-standard way to enable the build of snd-emux-synth
module inside Makefile, rewrite Kconfig to select the item explicitly
from each driver (sbawe and emu10k1). This is the standard way.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/synth')
-rw-r--r-- | sound/synth/Kconfig | 2 | ||||
-rw-r--r-- | sound/synth/emux/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/synth/Kconfig b/sound/synth/Kconfig new file mode 100644 index 000000000000..dfe8950e0556 --- /dev/null +++ b/sound/synth/Kconfig | |||
@@ -0,0 +1,2 @@ | |||
1 | config SND_SYNTH_EMUX | ||
2 | tristate | ||
diff --git a/sound/synth/emux/Makefile b/sound/synth/emux/Makefile index fb761c2c2b50..4599108452fd 100644 --- a/sound/synth/emux/Makefile +++ b/sound/synth/emux/Makefile | |||
@@ -8,6 +8,4 @@ snd-emux-synth-objs := emux.o emux_synth.o emux_seq.o emux_nrpn.o \ | |||
8 | snd-emux-synth-$(CONFIG_SND_PROC_FS) += emux_proc.o | 8 | snd-emux-synth-$(CONFIG_SND_PROC_FS) += emux_proc.o |
9 | snd-emux-synth-$(CONFIG_SND_SEQUENCER_OSS) += emux_oss.o | 9 | snd-emux-synth-$(CONFIG_SND_SEQUENCER_OSS) += emux_oss.o |
10 | 10 | ||
11 | # Toplevel Module Dependencies | 11 | obj-$(CONFIG_SND_SYNTH_EMUX) += snd-emux-synth.o |
12 | obj-$(CONFIG_SND_SBAWE_SEQ) += snd-emux-synth.o | ||
13 | obj-$(CONFIG_SND_EMU10K1_SEQ) += snd-emux-synth.o | ||