From 8644cf7f0d209aeb0f312f39073f8dcd9e277956 Mon Sep 17 00:00:00 2001 From: Sugar Zhang Date: Mon, 28 May 2018 11:20:22 +0800 Subject: [PATCH] ASoC: codec: dummy-codec: change channels_max to 384 Change-Id: I4b7fd55fc01f2c65f1cd5c8c60238957b759566b Signed-off-by: Sugar Zhang --- sound/soc/codecs/dummy-codec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/codecs/dummy-codec.c b/sound/soc/codecs/dummy-codec.c index d8c97a27d9f2..276179744324 100644 --- a/sound/soc/codecs/dummy-codec.c +++ b/sound/soc/codecs/dummy-codec.c @@ -28,7 +28,7 @@ struct snd_soc_dai_driver dummy_dai = { .playback = { .stream_name = "Dummy Playback", .channels_min = 2, - .channels_max = 8, + .channels_max = 384, .rates = SNDRV_PCM_RATE_8000_192000, .formats = (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | @@ -38,7 +38,7 @@ struct snd_soc_dai_driver dummy_dai = { .capture = { .stream_name = "Dummy Capture", .channels_min = 2, - .channels_max = 8, + .channels_max = 384, .rates = SNDRV_PCM_RATE_8000_192000, .formats = (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |