ALSA: aaci - Clean up duplicate code
authorTakashi Iwai <tiwai@suse.de>
Tue, 1 Dec 2009 15:36:56 +0000 (16:36 +0100)
committerTakashi Iwai <tiwai@suse.de>
Tue, 1 Dec 2009 15:36:56 +0000 (16:36 +0100)
Now snd_ac97_pcm_open() is called with the exactly same arguments
for both playback and capture directions.  Remove the unneeded check.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/arm/aaci.c

index eb715e73210632629d4411e46879dab826b6ae65..83b0328d389e7c1e807945a47677f92acea60b8c 100644 (file)
@@ -511,15 +511,9 @@ static int aaci_pcm_hw_params(struct snd_pcm_substream *substream,
        if (err < 0)
                goto out;
 
-       if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
-               err = snd_ac97_pcm_open(aacirun->pcm, params_rate(params),
-                                       params_channels(params),
-                                       aacirun->pcm->r[0].slots);
-       else
-               err = snd_ac97_pcm_open(aacirun->pcm, params_rate(params),
-                                       params_channels(params),
-                                       aacirun->pcm->r[0].slots);
-
+       err = snd_ac97_pcm_open(aacirun->pcm, params_rate(params),
+                               params_channels(params),
+                               aacirun->pcm->r[0].slots);
        if (err)
                goto out;