mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
ASoC: fix valid stream condition
[ Upstream commit6a7c59c6d9] 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:cde79035c6("ASoC: Handle multiple codecs with split playback / capture") Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
abdea7a45a
commit
ecc81bd72b
@@ -42,8 +42,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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user