aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2015-01-23 13:00:03 +0100
committerTakashi Iwai <tiwai@suse.de>2015-01-28 07:20:40 +0100
commiteab22e4053d47250ef755deb8592e0834eb409da (patch)
tree1579b2f69e8d895a16a3783a046fcb4113353113 /sound
parentALSA: line6: Reduce superfluous spinlock in midi.c (diff)
downloadlinux-dev-eab22e4053d47250ef755deb8592e0834eb409da.tar.xz
linux-dev-eab22e4053d47250ef755deb8592e0834eb409da.zip
ALSA: line6: Fix missing error handling in line6_pcm_acquire()
Tested-by: Chris Rorvick <chris@rorvick.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/usb/line6/pcm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/usb/line6/pcm.c b/sound/usb/line6/pcm.c
index 8a6059adef69..826158fe9149 100644
--- a/sound/usb/line6/pcm.c
+++ b/sound/usb/line6/pcm.c
@@ -133,7 +133,8 @@ int line6_pcm_acquire(struct snd_line6_pcm *line6pcm, int channels)
*/
if (line6pcm->active_urb_in | line6pcm->unlink_urb_in) {
dev_err(line6pcm->line6->ifcdev, "Device not yet ready\n");
- return -EBUSY;
+ err = -EBUSY;
+ goto pcm_acquire_error;
}
line6pcm->count_in = 0;