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 1766651C50; Tue, 23 Jan 2024 00:43:52 +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=1705970633; cv=none; b=IftBwqiNhgL1FxurwQZoT4EqU9KVq36AjCpP32ddbSHA2RZ6+kPkDfRIbAeFWODmOnwAvOmFrIMMTa9RBG2ekMGI1hWeXmO1w3HhGEarIgFuMC2ADwhXq2Atfj4PGi8wY4pQHm1b3JBGivHYnHQZf9WMqOpFQt42S9mgSCml6rE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705970633; c=relaxed/simple; bh=+MCCNiiugFKnxjpki/H9UwI6dZTeakgX2nzV6ffoP60=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=I540h3l5xAYKx7if/P/4KumG4eUep0rHQ1nmMxCAawZu6F4D4CsKcs0vSqlUiZd7kTh4ApFFx+Xqw5a05P7yo/WRRX/pstRjwufEYjqobxB10UTQszkTQd/2PkScKcMkKOMv0egUiCeYBi7QvoAt7BiDRCiNa0g/XBj9zN7LFjk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=BarxmrBv; 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="BarxmrBv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 025CBC43390; Tue, 23 Jan 2024 00:43:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705970632; bh=+MCCNiiugFKnxjpki/H9UwI6dZTeakgX2nzV6ffoP60=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BarxmrBvlMuVAq1GgGz/0dk32ZpLTn0qlFnvB9+IQBEb3b4yadfInYTVGOmx7HIqj 3P/4POmdb8Fl9qjGbMspJqxIijq1ybeuVFeGNVx9/VwRNj421AdOT0gha6EzspyMiL MGezIUpfIuL5dsQhT9DWqLT1f1ihZuSDMbrjhjOQ= 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.1 074/417] ARM: dts: qcom: apq8064: correct XOADC register address Date: Mon, 22 Jan 2024 15:54:02 -0800 Message-ID: <20240122235754.276751109@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235751.480367507@linuxfoundation.org> References: <20240122235751.480367507@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.1-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-apq8064.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi index 4b57e9f5bc64..2b3927a829b7 100644 --- a/arch/arm/boot/dts/qcom-apq8064.dtsi +++ b/arch/arm/boot/dts/qcom-apq8064.dtsi @@ -750,7 +750,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