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

Commit 93218c59 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ASoC: msm: qdsp6v2: add support to enable 4-channel QUAT TDM recording"

parents 03853804 1cb5ce08
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -6134,11 +6134,14 @@ static int msm_dai_q6_tdm_set_tdm_slot(struct snd_soc_dai *dai,
		return -EINVAL;
	}

	/* HW only supports 16 and 8 slots configuration */
	/* HW supports 1-32 slots configuration. Typical: 1, 2, 4, 8, 16, 32 */
	switch (slots) {
	case 2:
		cap_mask = 0x03;
		break;
	case 4:
		cap_mask = 0x0F;
		break;
	case 8:
		cap_mask = 0xFF;
		break;