From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 C199F2E06E4; Sat, 12 Sep 2026 12:20:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789215606; cv=none; b=AztSzz7ZjrmuIgFfVdH6kFoFaSkwfo2gEdDxMAMl1R1yF2fB4oTVFjSx9vdeXE4u0FehyRskFby7LI48B4rNyigQh1q6BcpmSGUbmPhfHwAusjUMkU0LKWn57QngXVP3oOxBp8RYWDiJa79TEgK/cBFT4XMTjLir9BYtNEUMAXU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789215606; c=relaxed/simple; bh=AmzLnW91Z+TUt/xNLeMhEyNaM0KpGAXwN9/jwG24FQQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=epS0wmftJ/wvnUwJmO/RUAPJ3YyPiCmG5qPLDkW9RFiSAwdwgFQDnX4dxBYwqOkuJdpVVyY2IbfWADLY4OWlK8zLKEyNTWjqYKk/w5V+KYGOVPsu3oyV8gFJhQiYvosfkijl/Jko4I1StfDJxXVZST/fvpJm+zB9vouZ52sR/gk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=s+YiMWUX; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="s+YiMWUX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C52BA1F000FF; Sat, 12 Sep 2026 12:20:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789215605; bh=8OitU4/HXIGF2B5CYZLE5LtBfXtVfNiBXBPurLarhIU=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=s+YiMWUX3Ut9MG3WRL9Q78dj5ucQlxszYkRzdbxKG7OPKX6Ce4dIX7jKNgzQ9GqN0 5FoRAQA7udqDJgKFoTKdXR1BEz+KaRNUezO4ON4BIy41Go1mI6ei5upD2g12DHlAE2 2nIazim19Ae0dHgvgDzdj7gtlP719Fml7gx3xC1w= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Konrad Dybcio , Krzysztof Kozlowski , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.12 0559/1376] arm64: dts: qcom: msm8996-xiaomi-gemini: Fix up ti,drv2604 enable GPIO Date: Sat, 12 Sep 2026 08:49:45 +0200 Message-ID: <20260912065619.993631541@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065607.535295758@linuxfoundation.org> References: <20260912065607.535295758@linuxfoundation.org> User-Agent: quilt/0.69 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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Konrad Dybcio [ Upstream commit 569413a98a1761782a0770aa85d20a2c78893279 ] Update the 'enable-gpio' property name to 'enable-gpios' to conform to the bindings for the TI DRV2604 haptics module. While at it, use the GPIO_ACTIVE_HIGH define instead of the raw literal. Fixes: 4ac46b3682c5 ("arm64: dts: qcom: msm8996: xiaomi-gemini: Add support for Xiaomi Mi 5") Signed-off-by: Konrad Dybcio Reviewed-by: Krzysztof Kozlowski Link: https://lore.kernel.org/r/20260625-topic-ti_drv2604_dtwarn-v1-1-76e91fcafbe8@oss.qualcomm.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm64/boot/dts/qcom/msm8996-xiaomi-gemini.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/qcom/msm8996-xiaomi-gemini.dts b/arch/arm64/boot/dts/qcom/msm8996-xiaomi-gemini.dts index dbad8f57f2fa3..f145e8ee5f80b 100644 --- a/arch/arm64/boot/dts/qcom/msm8996-xiaomi-gemini.dts +++ b/arch/arm64/boot/dts/qcom/msm8996-xiaomi-gemini.dts @@ -39,7 +39,7 @@ &blsp2_i2c3 { haptics: drv2604@5a { compatible = "ti,drv2604"; reg = <0x5a>; - enable-gpio = <&tlmm 93 0x00>; + enable-gpios = <&tlmm 93 GPIO_ACTIVE_HIGH>; mode = ; library-sel = ; pinctrl-names = "default","sleep"; -- 2.53.0