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 /include/sound/seq_kernel.h | |
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 'include/sound/seq_kernel.h')
-rw-r--r-- | include/sound/seq_kernel.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/sound/seq_kernel.h b/include/sound/seq_kernel.h index 18a2ac58b88f..feb58d455560 100644 --- a/include/sound/seq_kernel.h +++ b/include/sound/seq_kernel.h @@ -99,13 +99,9 @@ int snd_seq_event_port_attach(int client, struct snd_seq_port_callback *pcbp, int snd_seq_event_port_detach(int client, int port); #ifdef CONFIG_MODULES -void snd_seq_autoload_lock(void); -void snd_seq_autoload_unlock(void); void snd_seq_autoload_init(void); -#define snd_seq_autoload_exit() snd_seq_autoload_lock() +void snd_seq_autoload_exit(void); #else -#define snd_seq_autoload_lock() -#define snd_seq_autoload_unlock() #define snd_seq_autoload_init() #define snd_seq_autoload_exit() #endif |