Commit ffd3d5c6 authored by Feng Tang's avatar Feng Tang Committed by Takashi Iwai

ALSA: pcm - remove the dead code from snd_pcm_open_file()

The rpcm_file parameter is never used in current ALSA code, so remove
it to make it cleaner.
Signed-off-by: default avatarFeng Tang <feng.tang@intel.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 8d448162
...@@ -2058,16 +2058,12 @@ EXPORT_SYMBOL(snd_pcm_open_substream); ...@@ -2058,16 +2058,12 @@ EXPORT_SYMBOL(snd_pcm_open_substream);
static int snd_pcm_open_file(struct file *file, static int snd_pcm_open_file(struct file *file,
struct snd_pcm *pcm, struct snd_pcm *pcm,
int stream, int stream)
struct snd_pcm_file **rpcm_file)
{ {
struct snd_pcm_file *pcm_file; struct snd_pcm_file *pcm_file;
struct snd_pcm_substream *substream; struct snd_pcm_substream *substream;
int err; int err;
if (rpcm_file)
*rpcm_file = NULL;
err = snd_pcm_open_substream(pcm, stream, file, &substream); err = snd_pcm_open_substream(pcm, stream, file, &substream);
if (err < 0) if (err < 0)
return err; return err;
...@@ -2083,8 +2079,7 @@ static int snd_pcm_open_file(struct file *file, ...@@ -2083,8 +2079,7 @@ static int snd_pcm_open_file(struct file *file,
substream->pcm_release = pcm_release_private; substream->pcm_release = pcm_release_private;
} }
file->private_data = pcm_file; file->private_data = pcm_file;
if (rpcm_file)
*rpcm_file = pcm_file;
return 0; return 0;
} }
...@@ -2113,7 +2108,6 @@ static int snd_pcm_capture_open(struct inode *inode, struct file *file) ...@@ -2113,7 +2108,6 @@ static int snd_pcm_capture_open(struct inode *inode, struct file *file)
static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream) static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
{ {
int err; int err;
struct snd_pcm_file *pcm_file;
wait_queue_t wait; wait_queue_t wait;
if (pcm == NULL) { if (pcm == NULL) {
...@@ -2131,7 +2125,7 @@ static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream) ...@@ -2131,7 +2125,7 @@ static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
add_wait_queue(&pcm->open_wait, &wait); add_wait_queue(&pcm->open_wait, &wait);
mutex_lock(&pcm->open_mutex); mutex_lock(&pcm->open_mutex);
while (1) { while (1) {
err = snd_pcm_open_file(file, pcm, stream, &pcm_file); err = snd_pcm_open_file(file, pcm, stream);
if (err >= 0) if (err >= 0)
break; break;
if (err == -EAGAIN) { if (err == -EAGAIN) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment