diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-08-11 03:51:41 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-11 03:51:41 -0400 |
commit | 4d3a869333b74352c372077f316756d38cae09b1 (patch) | |
tree | 146332c9431f1592b3af7c2f61d98298ba521caf | |
parent | 5ef26e966d3fd105ad9a7e8e8f6d12c7fbd4c03d (diff) |
ALSA: seq: Fix CONFIG_SND_SEQ_MIDI dependency
The commit 0181307abc1d ("ALSA: seq: Reorganize kconfig and build")
rewrote the dependency of each sequencer module in a standard way, but
there was one change applied mistakenly: CONFIG_SND_SEQ_MIDI isn't
enabled properly by CONFIG_SND_RAWMIDI. I seem to have changed the
wrong one instead, CONFIG_SND_SEQ_MIDI_EMUL, which is eventually
reverse-selected by CONFIG_SND_SEQ_MIDI itself. This ended up the
lack of snd-seq-midi module as reported below.
The fix is to put def_tristate properly to CONFIG_SND_SEQ_MIDI instead
of *_MIDI_EMUL entry.
Fixes: 0181307abc1d ("ALSA: seq: Reorganize kconfig and build")
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=196633
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/core/seq/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/core/seq/Kconfig b/sound/core/seq/Kconfig index a536760a94c2..45c1336c6597 100644 --- a/sound/core/seq/Kconfig +++ b/sound/core/seq/Kconfig | |||
@@ -47,10 +47,10 @@ config SND_SEQ_HRTIMER_DEFAULT | |||
47 | timer. | 47 | timer. |
48 | 48 | ||
49 | config SND_SEQ_MIDI_EVENT | 49 | config SND_SEQ_MIDI_EVENT |
50 | def_tristate SND_RAWMIDI | 50 | tristate |
51 | 51 | ||
52 | config SND_SEQ_MIDI | 52 | config SND_SEQ_MIDI |
53 | tristate | 53 | def_tristate SND_RAWMIDI |
54 | select SND_SEQ_MIDI_EVENT | 54 | select SND_SEQ_MIDI_EVENT |
55 | 55 | ||
56 | config SND_SEQ_MIDI_EMUL | 56 | config SND_SEQ_MIDI_EMUL |