Browse Source

OSS: soundcard: fix return value of sound_open()

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Dan Carpenter 14 years ago
parent
commit
b7d22ccf08
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sound/oss/soundcard.c

+ 1 - 1
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)