aboutsummaryrefslogtreecommitdiff
path: root/sound/core
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-04-15 11:23:44 +0200
committerTakashi Iwai <tiwai@suse.de>2009-04-15 11:23:44 +0200
commitff0c68d03b77ecb3a682137c42e947a4dc33e9b3 (patch)
treeeb9b5103513692c10fa48a4a8cbae9a1efa12663 /sound/core
parentbfb53037c61ddf7c16a40297ad16f2bcbde534dc (diff)
parent95c0909961bc5ff18c78b2ab0d093cddc0a8b0b5 (diff)
Merge branch 'topic/jack-free-fix' into topic/hda
* topic/jack-free-fix: ALSA: hda - Avoid call of snd_jack_report at release ALSA: add private_data to struct snd_jack
Diffstat (limited to 'sound/core')
-rw-r--r--sound/core/jack.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/core/jack.c b/sound/core/jack.c
index c8254c667c6..d54d1a05fe6 100644
--- a/sound/core/jack.c
+++ b/sound/core/jack.c
@@ -35,6 +35,9 @@ static int snd_jack_dev_free(struct snd_device *device)
{
struct snd_jack *jack = device->device_data;
+ if (jack->private_free)
+ jack->private_free(jack);
+
/* If the input device is registered with the input subsystem
* then we need to use a different deallocator. */
if (jack->registered)