From: Linus Torvalds Date: Wed, 6 Aug 2008 22:14:13 +0000 (-0700) Subject: pcm_native.c: remove unused label X-Git-Tag: v2.6.27-rc3~85 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=680db0136e0778a0d7e025af7572c6a8d82279e2;p=linux-2.6 pcm_native.c: remove unused label This fixes the warning sound/core/pcm_native.c: In function 'snd_pcm_fasync': sound/core/pcm_native.c:3262: warning: label 'out' defined but not used Signed-off-by: Linus Torvalds --- diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index c49b9d9e30..333cff68c1 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c @@ -3259,7 +3259,6 @@ static int snd_pcm_fasync(int fd, struct file * file, int on) runtime = substream->runtime; err = fasync_helper(fd, file, on, &runtime->fasync); -out: unlock_kernel(); if (err < 0) return err;