Skip to content

Commit 9da9d29

Browse files
mohsRafigregkh
authored andcommitted
ASoC: qcom: q6apm-lpass-dais: Fix missing set_fmt DAI op for I2S
commit 33b55b9 upstream. The q6i2s_set_fmt() function was defined but never linked into the I2S DAI operations, resulting DAI format settings is being ignored during stream setup. This change fixes the issue by properly linking the .set_fmt handler within the DAI ops. Fixes: 30ad723 ("ASoC: qdsp6: audioreach: add q6apm lpass dai support") Cc: stable@vger.kernel.org Reviewed-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com> Signed-off-by: Mohammad Rafi Shaik <mohammad.rafi.shaik@oss.qualcomm.com> Message-ID: <20250908053631.70978-3-mohammad.rafi.shaik@oss.qualcomm.com> Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent f7e4e95 commit 9da9d29

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sound/soc/qcom/qdsp6/q6apm-lpass-dais.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ static const struct snd_soc_dai_ops q6dma_ops = {
204204
.shutdown = q6apm_lpass_dai_shutdown,
205205
.set_channel_map = q6dma_set_channel_map,
206206
.hw_params = q6dma_hw_params,
207+
.set_fmt = q6i2s_set_fmt,
207208
};
208209

209210
static const struct snd_soc_dai_ops q6i2s_ops = {

0 commit comments

Comments
 (0)