OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 From bd73a3dd257fb838bd456a18eeee0ef0224b7a40 Mon Sep 17 00:00:00 2001
2 From: Christian Lamparter <chunkeey@gmail.com>
3 Date: Wed, 25 Jul 2018 10:37:47 +0200
4 Subject: [PATCH] ARM: dts: qcom: ipq4019: fix cpu0's qcom,saw2 reg value
5  
6 while compiling an ipq4019 target, dtc will complain:
7 regulator@b089000 unit address format error, expected "2089000"
8  
9 The saw0 regulator reg value seems to be
10 copied and pasted from qcom-ipq8064.dtsi.
11  
12 This patch fixes the reg value to match that of the
13 unit address which in turn silences the warning.
14 (There is no driver for qcom,saw2 right now.
15 So this went unnoticed)
16  
17 Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
18 Signed-off-by: John Crispin <john@phrozen.org>
19 Signed-off-by: Andy Gross <andy.gross@linaro.org>
20 ---
21 arch/arm/boot/dts/qcom-ipq4019.dtsi | 2 +-
22 1 file changed, 1 insertion(+), 1 deletion(-)
23  
24 --- a/arch/arm/boot/dts/qcom-ipq4019.dtsi
25 +++ b/arch/arm/boot/dts/qcom-ipq4019.dtsi
26 @@ -321,7 +321,7 @@
27  
28 saw0: regulator@b089000 {
29 compatible = "qcom,saw2";
30 - reg = <0x02089000 0x1000>, <0x0b009000 0x1000>;
31 + reg = <0x0b089000 0x1000>, <0x0b009000 0x1000>;
32 regulator;
33 };
34