From: Kuninori Morimoto Date: Wed, 26 Feb 2025 01:36:58 +0000 (+0000) Subject: ASoC: meson: t9015: use inclusive language for SND_SOC_DAIFMT_CBx_CFx X-Git-Tag: v6.15-rc1~173^2~4^2~72^2~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6cc4d2c11537d66e9d4a7356a576f1bea6f4009f;p=thirdparty%2Fkernel%2Flinux.git ASoC: meson: t9015: use inclusive language for SND_SOC_DAIFMT_CBx_CFx In SND_SOC_DAIFMT_CBx_CFx, M/S are no longer used. use P/C. Signed-off-by: Kuninori Morimoto Link: https://patch.msgid.link/87zfi9a3lx.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/meson/t9015.c b/sound/soc/meson/t9015.c index 571f65788c592..a80e9c9d6288b 100644 --- a/sound/soc/meson/t9015.c +++ b/sound/soc/meson/t9015.c @@ -57,11 +57,11 @@ static int t9015_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) unsigned int val; switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { - case SND_SOC_DAIFMT_CBM_CFM: + case SND_SOC_DAIFMT_CBP_CFP: val = I2S_MODE; break; - case SND_SOC_DAIFMT_CBS_CFS: + case SND_SOC_DAIFMT_CBC_CFC: val = 0; break;