diff options
author | Dan Carpenter <error27@gmail.com> | 2010-10-10 19:34:22 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-10-11 13:45:30 +0200 |
commit | b7d22ccf08d67d13f77a9580d07e7f72e6241213 (patch) | |
tree | a579154fb9d93bd3b1afe0ba5cf07c6ebe529560 | |
parent | 4e83998f5af010a928495988c586ea2926624db9 (diff) |
OSS: soundcard: fix return value of sound_open()
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/oss/soundcard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/soundcard.c b/sound/oss/soundcard.c index a5ab61ed0a97..46c0d03dbecc 100644 --- a/sound/oss/soundcard.c +++ b/sound/oss/soundcard.c @@ -249,7 +249,7 @@ static int sound_open(struct inode *inode, struct file *file) } mutex_unlock(&soundcard_mutex); - return 0; + return retval; } static int sound_release(struct inode *inode, struct file *file) |