Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: rk3328: Use modern ASoC DAI format terminology

As part of moving to remove the old style defines for the bus clocks update
the rk3328 driver to use more modern terminology for clocking.

Signed-off-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20220602135316.3554400-4-broonie@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>

+3 -3
+3 -3
sound/soc/codecs/rk3328_codec.c
··· 69 69 snd_soc_component_get_drvdata(dai->component); 70 70 unsigned int val; 71 71 72 - switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { 73 - case SND_SOC_DAIFMT_CBS_CFS: 72 + switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) { 73 + case SND_SOC_DAIFMT_CBC_CFC: 74 74 val = PIN_DIRECTION_IN | DAC_I2S_MODE_SLAVE; 75 75 break; 76 - case SND_SOC_DAIFMT_CBM_CFM: 76 + case SND_SOC_DAIFMT_CBP_CFP: 77 77 val = PIN_DIRECTION_OUT | DAC_I2S_MODE_MASTER; 78 78 break; 79 79 default: