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 E1B0927FD76; Tue, 27 May 2025 17:21:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1748366478; cv=none; b=jUFY3lP85i7Q0XduRfSawy6qFXPdI1wZQ+3oqAcrlFFtplJz8i68Xl/puKi7GFLeM83TNK4V1wfM4bACOIuCZmR2gm8UilE1pxASEzopuQiNvN7jZZrjFfFn4VXGeJimPmN6ZHd74FvqaXXAQf15tStvAVGhMhlvVyj+0aUQMq4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1748366478; c=relaxed/simple; bh=McoxLDLyvuJoDcb2GXLlCzF96GaX49QcxorH+P3B5Uo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=U6xvmSJXG475zm0bzNUHeQQEv1hTgbM4lq6fMbYG8R9liSpYySJmnWrh9OLCy5D2dI5Kr/Jz8obk4LGxOmwMWbhLZ6PlQn3pXrfvTknjhBaK6eAs9x9xtNvApvbU/gLaTqmjEKpLS3a/f82hbsUXf3DgoquMo3ep4byb5uL9ELc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=i4Gm4paL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="i4Gm4paL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 71B27C4CEED; Tue, 27 May 2025 17:21:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1748366477; bh=McoxLDLyvuJoDcb2GXLlCzF96GaX49QcxorH+P3B5Uo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=i4Gm4paLG/1YXrzQKaGbTxoL+VRgFDYy/Wb0ekwJm5M0D6MYu89qGiutK6BAf3qZb exuRASEJIGPUsphh/iWTsLjPtVuJ9BHt+rrgKs/giinK3OC3C8MNzg/hlIWZweLHjO Es3nQfd+zlsKEsSTHKDoqfePy5Os4Fh+Q2S4yb1M= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Srinivas Kandagatla , Krzysztof Kozlowski , Mark Brown , Sasha Levin Subject: [PATCH 6.14 079/783] ASoC: codecs: wsa884x: Correct VI sense channel mask Date: Tue, 27 May 2025 18:17:56 +0200 Message-ID: <20250527162516.351384917@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250527162513.035720581@linuxfoundation.org> References: <20250527162513.035720581@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Krzysztof Kozlowski [ Upstream commit 060fac202eb8e5c83961f0e0bf6dad8ab6e46643 ] VI sense port on WSA883x speaker takes only one channel, so use 0x1 as channel mask. This fixes garbage being recorded by the speaker when testing the VI sense feedback path. Cc: Srinivas Kandagatla Signed-off-by: Krzysztof Kozlowski Link: https://patch.msgid.link/20250312-asoc-wsa88xx-visense-v1-2-9ca705881122@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/wsa884x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/wsa884x.c b/sound/soc/codecs/wsa884x.c index 560a2c04b6955..18b0ee8f15a55 100644 --- a/sound/soc/codecs/wsa884x.c +++ b/sound/soc/codecs/wsa884x.c @@ -891,7 +891,7 @@ static const struct sdw_port_config wsa884x_pconfig[WSA884X_MAX_SWR_PORTS] = { }, [WSA884X_PORT_VISENSE] = { .num = WSA884X_PORT_VISENSE + 1, - .ch_mask = 0x3, + .ch_mask = 0x1, }, [WSA884X_PORT_CPS] = { .num = WSA884X_PORT_CPS + 1, -- 2.39.5