Merge "asoc: Add 32bit support in meta i2s"

This commit is contained in:
qctecmdr 2020-10-12 08:55:34 -07:00 committed by Gerrit - the friendly Code Review server
commit 63a7be894a

View file

@ -6877,6 +6877,10 @@ static int msm_dai_q6_meta_mi2s_hw_params(struct snd_pcm_substream *substream,
port_cfg->bit_width = 24;
dai_data->bitwidth = 24;
break;
case SNDRV_PCM_FORMAT_S32_LE:
port_cfg->bit_width = 32;
dai_data->bitwidth = 32;
break;
default:
pr_err("%s: format %d\n",
__func__, params_format(params));