diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-06 18:14:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-06 18:14:13 -0400 |
commit | 680db0136e0778a0d7e025af7572c6a8d82279e2 (patch) | |
tree | bccd5a57cfd3f26d97cb64bd35ec3aba6175b6f1 /sound | |
parent | 970a8a513c30a1c3e8995609a153658a34bc02bf (diff) |
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 <torvalds@linux-foundation.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/pcm_native.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index c49b9d9e303c..333cff68c150 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) | |||
3259 | runtime = substream->runtime; | 3259 | runtime = substream->runtime; |
3260 | 3260 | ||
3261 | err = fasync_helper(fd, file, on, &runtime->fasync); | 3261 | err = fasync_helper(fd, file, on, &runtime->fasync); |
3262 | out: | ||
3263 | unlock_kernel(); | 3262 | unlock_kernel(); |
3264 | if (err < 0) | 3263 | if (err < 0) |
3265 | return err; | 3264 | return err; |