mirror of https://gitee.com/openkylin/linux.git
soundwire: intel: set dai min and max channels correctly
Looks like there is a copy paste error. This patch fixes it! Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
9315d904c7
commit
3919412870
|
@ -715,8 +715,8 @@ static int intel_create_dai(struct sdw_cdns *cdns,
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
dais[i].playback.channels_min = 1;
|
dais[i].capture.channels_min = 1;
|
||||||
dais[i].playback.channels_max = max_ch;
|
dais[i].capture.channels_max = max_ch;
|
||||||
dais[i].capture.rates = SNDRV_PCM_RATE_48000;
|
dais[i].capture.rates = SNDRV_PCM_RATE_48000;
|
||||||
dais[i].capture.formats = SNDRV_PCM_FMTBIT_S16_LE;
|
dais[i].capture.formats = SNDRV_PCM_FMTBIT_S16_LE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue