diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-02-12 14:20:24 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-02-12 14:42:31 +0100 |
commit | 54a721abd7953a58e5479065c0cfdd8679d785c9 (patch) | |
tree | 9b16bb0c1901cafb16cfd06f4f77a7bd08b8b0f2 /sound/core/seq/oss/seq_oss.c | |
parent | 056622053b8ae02978678ac1321b5bd956e7c812 (diff) |
ALSA: seq: Drop snd_seq_autoload_lock() and _unlock()
The autoload lock became already superfluous due to the recent rework
of autoload code. Let's drop them now. This allows us to simplify a
few codes nicely.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/seq/oss/seq_oss.c')
-rw-r--r-- | sound/core/seq/oss/seq_oss.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/core/seq/oss/seq_oss.c b/sound/core/seq/oss/seq_oss.c index ae1814aa767e..72873a46afeb 100644 --- a/sound/core/seq/oss/seq_oss.c +++ b/sound/core/seq/oss/seq_oss.c @@ -79,7 +79,6 @@ static int __init alsa_seq_oss_init(void) { int rc; - snd_seq_autoload_lock(); if ((rc = register_device()) < 0) goto error; if ((rc = register_proc()) < 0) { @@ -104,7 +103,6 @@ static int __init alsa_seq_oss_init(void) snd_seq_oss_synth_init(); error: - snd_seq_autoload_unlock(); return rc; } |