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 4CEF05DF01; Tue, 23 Jan 2024 01:46:54 +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=1705974415; cv=none; b=oDtvZMW9T75HySG1rb2IKDDRZorjKAHRW2K+3HNCSY7n9QcUsDm16uL7hY+Y1FyC5bJEWiNN+5k4Rzx3FvGCcl8RcVjGPDUJnOWf+husRab3xyi2ROYtk2WDeY1RWA3BwPC8ZW/SphaDPQGug+iqHpGNfgcBe2sjUdI5GkDz8Jo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705974415; c=relaxed/simple; bh=M4hhMeGWTM2mYSd5sSc7XDutoBl51SWQUXInPkjosGg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MinCyL9RSHSTFsWpAV/vaxPOv1OK9gguamM3S0LRhq5sSpXP17XswWehJUFLr6qS3NWaSaQK+gxr0IQ064nTquCB0edVqjeMZucYJj0CzYcAMIRVlL7ar2+yel1rkcxPvj9icjnZMc3VP0qoZQFernV8eG6vqR4kWrZ5lxZSp6E= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DTOOXHDx; 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="DTOOXHDx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ADD19C433F1; Tue, 23 Jan 2024 01:46:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705974414; bh=M4hhMeGWTM2mYSd5sSc7XDutoBl51SWQUXInPkjosGg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DTOOXHDxisx7kerL8OBFmHT5+V/evFxWjWJynPQFIQd0gm2WVR3pdDz3qa9KIyvAy Ke1biSwvfCGG70K4IBAGgpp7WPGCMzGUL7+w2RDidGX1eLBePLAPMqWXw0MlT6lISF WqistRr0SuNUX5ZQ1g6G0OpU8YdFIVGEnq9ePxYM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Konrad Dybcio , Krzysztof Kozlowski , Dmitry Baryshkov , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.6 092/583] ARM: dts: qcom: apq8064: correct XOADC register address Date: Mon, 22 Jan 2024 15:52:23 -0800 Message-ID: <20240122235814.985080858@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235812.238724226@linuxfoundation.org> References: <20240122235812.238724226@linuxfoundation.org> User-Agent: quilt/0.67 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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Baryshkov [ Upstream commit 554557542e709e190eff8a598f0cde02647d533a ] The XOADC is present at the address 0x197 rather than just 197. It doesn't change a lot (since the driver hardcodes all register addresses), but the DT should present correct address anyway. Fixes: c4b70883ee33 ("ARM: dts: add XOADC and IIO HWMON to APQ8064") Reviewed-by: Konrad Dybcio Reviewed-by: Krzysztof Kozlowski Signed-off-by: Dmitry Baryshkov Link: https://lore.kernel.org/r/20230928110309.1212221-3-dmitry.baryshkov@linaro.org Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- arch/arm/boot/dts/qcom/qcom-apq8064.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/qcom/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom/qcom-apq8064.dtsi index 516f0d2495e2..950adb63af70 100644 --- a/arch/arm/boot/dts/qcom/qcom-apq8064.dtsi +++ b/arch/arm/boot/dts/qcom/qcom-apq8064.dtsi @@ -738,7 +738,7 @@ pwrkey@1c { xoadc: xoadc@197 { compatible = "qcom,pm8921-adc"; - reg = <197>; + reg = <0x197>; interrupts-extended = <&pmicintc 78 IRQ_TYPE_EDGE_RISING>; #address-cells = <2>; #size-cells = <0>; -- 2.43.0