diff options
author | Ladislav Michl <ladis@linux-mips.org> | 2018-03-01 15:20:56 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-03-01 17:56:35 +0000 |
commit | e6ceb922ca802711db4b48639a9c73f9dc412f87 (patch) | |
tree | a1e6792f42b6cb0b8d1b4388d8135afe61fc6c34 /sound/soc/codecs/max9867.c | |
parent | 8b9c716aada77e72e2fe82320aba5a95b75ca400 (diff) | |
download | lwn-e6ceb922ca802711db4b48639a9c73f9dc412f87.tar.gz lwn-e6ceb922ca802711db4b48639a9c73f9dc412f87.zip |
ASoC: max9867: Fix codec capabilities
Codes is stereo only with playback and capture streams bind
to the same rate.
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/max9867.c')
-rw-r--r-- | sound/soc/codecs/max9867.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c index ac30213deac4..367c0329d5c8 100644 --- a/sound/soc/codecs/max9867.c +++ b/sound/soc/codecs/max9867.c @@ -369,19 +369,20 @@ static struct snd_soc_dai_driver max9867_dai[] = { .name = "max9867-aif1", .playback = { .stream_name = "HiFi Playback", - .channels_min = 1, + .channels_min = 2, .channels_max = 2, .rates = MAX9867_RATES, .formats = MAX9867_FORMATS, }, .capture = { .stream_name = "HiFi Capture", - .channels_min = 1, + .channels_min = 2, .channels_max = 2, .rates = MAX9867_RATES, .formats = MAX9867_FORMATS, }, .ops = &max9867_dai_ops, + .symmetric_rates = 1, } }; |