diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-06-23 08:37:59 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-09-23 04:36:48 -0400 |
commit | 746d4a02e68499fc6c1f8d0c43d2271853ade181 (patch) | |
tree | c4a1e9a0e8f5f95a44a3349d9b86490fe837428f /sound/synth | |
parent | 42750b04c5baa7c5ffdf0a8be2b9b320efdf069f (diff) |
[ALSA] Fix disconnection of proc interface
- Add the linked list to each proc entry to enable a single-shot
disconnection (unregister)
- Deprecate snd_info_unregister(), use snd_info_free_entry()
- Removed NULL checks of snd_info_free_entry()
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/synth')
-rw-r--r-- | sound/synth/emux/emux_proc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/synth/emux/emux_proc.c b/sound/synth/emux/emux_proc.c index 58b9601f3ad0..59144ec026e4 100644 --- a/sound/synth/emux/emux_proc.c +++ b/sound/synth/emux/emux_proc.c | |||
@@ -128,10 +128,8 @@ void snd_emux_proc_init(struct snd_emux *emu, struct snd_card *card, int device) | |||
128 | 128 | ||
129 | void snd_emux_proc_free(struct snd_emux *emu) | 129 | void snd_emux_proc_free(struct snd_emux *emu) |
130 | { | 130 | { |
131 | if (emu->proc) { | 131 | snd_info_free_entry(emu->proc); |
132 | snd_info_unregister(emu->proc); | 132 | emu->proc = NULL; |
133 | emu->proc = NULL; | ||
134 | } | ||
135 | } | 133 | } |
136 | 134 | ||
137 | #endif /* CONFIG_PROC_FS */ | 135 | #endif /* CONFIG_PROC_FS */ |