From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1676C38DD0; Mon, 11 Dec 2023 13:52:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="G16tMg/2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 695FEC433CA; Mon, 11 Dec 2023 13:52:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702302742; bh=rnIVZ5NoqCQIqFSODCtBfY9Y52CWqEGI28+S0xTxYaI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=G16tMg/2fD+VamOP4Nm3kuLPCOrTvlpcZilW8J25mYsNXgLlkPrGuTNE6WuaqeLlz Uzw+dZEaW3eSv3cAzh4i5cy8XKawZkQzeHWv0/t4omk16jvDWR+vhJKyxhIuUd1ZwL taCwojDWUKaqHMNDPk5C3b/wNzHW92P3oQk3pMoK4DOviMeJt+qXq+64hebqPXcfr5 9OvKhHpv/lmWkloi2yxiNPWotPemhCdDJ0889NdrwVwHAMt+AEvWWSCQjfIPFoxRmt fTQmVUMdjyh9mhYdsUFZHS1v6HL2Vxiep6EjSgsB3ehbZk/9OiuX9UhY93SoXdXEJv E7S3ONiCNrjxg== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Maciej Strozek , Charles Keepax , Mark Brown , Sasha Levin , james.schulman@cirrus.com, david.rhodes@cirrus.com, rf@opensource.cirrus.com, lgirdwood@gmail.com, perex@perex.cz, tiwai@suse.com, alsa-devel@alsa-project.org, patches@opensource.cirrus.com, linux-sound@vger.kernel.org Subject: [PATCH AUTOSEL 6.6 11/47] ASoC: cs43130: Fix incorrect frame delay configuration Date: Mon, 11 Dec 2023 08:50:12 -0500 Message-ID: <20231211135147.380223-11-sashal@kernel.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20231211135147.380223-1-sashal@kernel.org> References: <20231211135147.380223-1-sashal@kernel.org> Precedence: bulk X-Mailing-List: linux-sound@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore X-stable-base: Linux 6.6.5 Content-Transfer-Encoding: 8bit From: Maciej Strozek [ Upstream commit aa7e8e5e4011571022dc06e4d7a2f108feb53d1a ] Signed-off-by: Maciej Strozek Acked-by: Charles Keepax Link: https://lore.kernel.org/r/20231117141344.64320-3-mstrozek@opensource.cirrus.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/cs43130.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/cs43130.c b/sound/soc/codecs/cs43130.c index 778a62e57d456..206008bdecac3 100644 --- a/sound/soc/codecs/cs43130.c +++ b/sound/soc/codecs/cs43130.c @@ -579,7 +579,7 @@ static int cs43130_set_sp_fmt(int dai_id, unsigned int bitwidth_sclk, break; case SND_SOC_DAIFMT_LEFT_J: hi_size = bitwidth_sclk; - frm_delay = 2; + frm_delay = 0; frm_phase = 1; break; case SND_SOC_DAIFMT_DSP_A: -- 2.42.0