diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2020-10-22 14:05:18 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-10-23 18:28:50 +0100 |
commit | f47d0742515748162d3fc35f04331c5b81c0ed47 (patch) | |
tree | 933c2b41630451aa84b8f8af0aec9af81bcd3a94 /sound | |
parent | eb5a558705c7f63d06b4ddd072898b1ca894e053 (diff) | |
download | linux-stable-f47d0742515748162d3fc35f04331c5b81c0ed47.tar.gz linux-stable-f47d0742515748162d3fc35f04331c5b81c0ed47.tar.bz2 linux-stable-f47d0742515748162d3fc35f04331c5b81c0ed47.zip |
ASoC: codecs: wsa881x: add missing stream rates and format
Add missing supported rates and formats for the stream, without
which attempt to do playback will fail to find any matching rates/format.
Fixes: a0aab9e1404a ("ASoC: codecs: add wsa881x amplifier support")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20201022130518.31723-1-srinivas.kandagatla@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/wsa881x.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/wsa881x.c b/sound/soc/codecs/wsa881x.c index d39d479e2378..5456124457a7 100644 --- a/sound/soc/codecs/wsa881x.c +++ b/sound/soc/codecs/wsa881x.c @@ -1026,6 +1026,8 @@ static struct snd_soc_dai_driver wsa881x_dais[] = { .id = 0, .playback = { .stream_name = "SPKR Playback", + .rates = SNDRV_PCM_RATE_48000, + .formats = SNDRV_PCM_FMTBIT_S16_LE, .rate_max = 48000, .rate_min = 48000, .channels_min = 1, |