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 F11461E2834; Wed, 25 Feb 2026 01:38:10 +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=1771983491; cv=none; b=WD4m/njwNhwLo0dyF0wXvlXc7UAtBEtyl8RXARyEULP+4tEwrUgAt7nKYzh2i1sVkdPCIVB9gl4QGltdcyIMmBFIawhTsFxAfWpxRLKpE8riFjYdbJ1QjiJoIKylaqdMs2jU9AvfM4he/RtQvnyyy9Lrs/5SsERTdIdAcQiFR9s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771983491; c=relaxed/simple; bh=yXbyKBw5kMcxWZXl3IL36c06mTezPJIwQXyT2k5AQxg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UtU6x6u2NebN5nq6dzlyi8TQ4cl5p3UmF39AJQC1AhslwQQwYpYonmFLpvLaUyojJP8tENLIiQc9kM8XRnmwaO79edo447atrHvohNx0AADddeKec+tlf/+r5P3t2D0vaHL/XqSLHg62mDRI1eRl+FAxoCBfLSghdrvzukWKS8Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1yqbQNT8; 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="1yqbQNT8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ABBDCC116D0; Wed, 25 Feb 2026 01:38:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1771983490; bh=yXbyKBw5kMcxWZXl3IL36c06mTezPJIwQXyT2k5AQxg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1yqbQNT8UyKrQ9qCSUxFdBIUJKqxN3UhvyAhPYHf4d3lvdHivqmRBIjckp+yL3cY8 Q5vGxn3AUnUpJo9t+j9Znm3MET0GHzvc59KAkgZaU6ve5O3J9DeNrSiaICYQW9nTx6 AD9Opacs3LAMAGBzxxq3ZebUFSLtbqC1qM3JhLGM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Luca Weiss , Dmitry Baryshkov , Konrad Dybcio , Linus Walleij , Sasha Levin Subject: [PATCH 6.19 602/781] pinctrl: qcom: sm8250-lpass-lpi: Fix i2s2_data_groups definition Date: Tue, 24 Feb 2026 17:21:51 -0800 Message-ID: <20260225012414.561196924@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260225012359.695468795@linuxfoundation.org> References: <20260225012359.695468795@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Luca Weiss [ Upstream commit eabf273c8466af3f033473c2d2267a6ea7946d57 ] The i2s2_data function is available on both gpio12 and gpio13. Fix the groups definition. Fixes: 6e261d1090d6 ("pinctrl: qcom: Add sm8250 lpass lpi pinctrl driver") Signed-off-by: Luca Weiss Reviewed-by: Dmitry Baryshkov Reviewed-by: Konrad Dybcio Signed-off-by: Linus Walleij Signed-off-by: Sasha Levin --- drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c b/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c index 64494a86490e2..c27452eece3e6 100644 --- a/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c +++ b/drivers/pinctrl/qcom/pinctrl-sm8250-lpass-lpi.c @@ -73,7 +73,7 @@ static const char * const i2s1_ws_groups[] = { "gpio7" }; static const char * const i2s1_data_groups[] = { "gpio8", "gpio9" }; static const char * const wsa_swr_clk_groups[] = { "gpio10" }; static const char * const wsa_swr_data_groups[] = { "gpio11" }; -static const char * const i2s2_data_groups[] = { "gpio12", "gpio12" }; +static const char * const i2s2_data_groups[] = { "gpio12", "gpio13" }; static const struct lpi_pingroup sm8250_groups[] = { LPI_PINGROUP(0, 0, swr_tx_clk, qua_mi2s_sclk, _, _), -- 2.51.0