Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec4dc01e authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: wm8962: Convert to params_width()



The CODEC doesn't care how data is laid out in memory.

Signed-off-by: default avatarMark Brown <broonie@linaro.org>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
parent 5d3aef91
Loading
Loading
Loading
Loading
+5 −5
Original line number Original line Diff line number Diff line
@@ -2586,16 +2586,16 @@ static int wm8962_hw_params(struct snd_pcm_substream *substream,
	if (wm8962->lrclk % 8000 == 0)
	if (wm8962->lrclk % 8000 == 0)
		adctl3 |= WM8962_SAMPLE_RATE_INT_MODE;
		adctl3 |= WM8962_SAMPLE_RATE_INT_MODE;


	switch (params_format(params)) {
	switch (params_width(params)) {
	case SNDRV_PCM_FORMAT_S16_LE:
	case 16:
		break;
		break;
	case SNDRV_PCM_FORMAT_S20_3LE:
	case 20:
		aif0 |= 0x4;
		aif0 |= 0x4;
		break;
		break;
	case SNDRV_PCM_FORMAT_S24_LE:
	case 24:
		aif0 |= 0x8;
		aif0 |= 0x8;
		break;
		break;
	case SNDRV_PCM_FORMAT_S32_LE:
	case 32:
		aif0 |= 0xc;
		aif0 |= 0xc;
		break;
		break;
	default:
	default: