aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/seq/seq_queue.h
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2018-08-01 16:37:02 +0200
committerTakashi Iwai <tiwai@suse.de>2018-08-01 22:54:36 +0200
commit00976ad5271999ba06d24319fd1031b178aff832 (patch)
tree0c88e68218eafd09b3d2b85179ab13fb199f34b6 /sound/core/seq/seq_queue.h
parentALSA: seq: Remove dead codes (diff)
downloadlinux-dev-00976ad5271999ba06d24319fd1031b178aff832.tar.xz
linux-dev-00976ad5271999ba06d24319fd1031b178aff832.zip
ALSA: seq: Fix leftovers at probe error path
The sequencer core module doesn't call some destructors in the error path of the init code, which may leave some resources. This patch mainly fix these leaks by calling the destructors appropriately at alsa_seq_init(). Also the patch brings a few cleanups along with it, namely: - Expand the old "if ((err = xxx) < 0)" coding style - Get rid of empty seq_queue_init() and its caller - Change snd_seq_info_done() to void Last but not least, a couple of functions lose __exit annotation since they are called also in alsa_seq_init(). No functional changes but minor code cleanups. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r--sound/core/seq/seq_queue.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/core/seq/seq_queue.h b/sound/core/seq/seq_queue.h
index 719093489a2c..76db43b79a2b 100644
--- a/sound/core/seq/seq_queue.h
+++ b/sound/core/seq/seq_queue.h
@@ -63,9 +63,6 @@ struct snd_seq_queue {
/* get the number of current queues */
int snd_seq_queue_get_cur_queues(void);
-/* init queues structure */
-int snd_seq_queues_init(void);
-
/* delete queues */
void snd_seq_queues_delete(void);