]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: fix valid stream condition
authorJerome Brunet <jbrunet@baylibre.com>
Mon, 29 Apr 2019 09:47:49 +0000 (11:47 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 3 May 2019 05:52:03 +0000 (14:52 +0900)
A stream may specify a rate range using 'rate_min' and 'rate_max', so a
stream may be valid and not specify any rates. However, as stream cannot
be valid and not have any channel. Let's use this condition instead to
determine if a stream is valid or not.

Fixes: cde79035c6cf ("ASoC: Handle multiple codecs with split playback / capture")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-pcm.c

index d21247546f7f7699e3833035c36a5393aff13d67..57088bd69e5dc710ca64b6beabc4c3207499e55f 100644 (file)
@@ -43,8 +43,8 @@ static bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int stream)
        else
                codec_stream = &dai->driver->capture;
 
-       /* If the codec specifies any rate at all, it supports the stream. */
-       return codec_stream->rates;
+       /* If the codec specifies any channels at all, it supports the stream */
+       return codec_stream->channels_min;
 }
 
 /**