ath79: add support for the TP-LINK WBS510 V1
[openwrt/staging/wigyori.git] / target / linux / ipq40xx / patches-4.14 / 073-qcom-ipq4019-fix-cpu0-s-qcom-saw2-reg-value.patch
1 From d60e006ec0e425877aacc61c7ece3da0434a8fce Mon Sep 17 00:00:00 2001
2 From: Christian Lamparter <chunkeey@gmail.com>
3 Date: Mon, 23 Jul 2018 16:34:54 +0200
4 Subject: [PATCH 7/8] 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 ---
20 arch/arm/boot/dts/qcom-ipq4019.dtsi | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23 --- a/arch/arm/boot/dts/qcom-ipq4019.dtsi
24 +++ b/arch/arm/boot/dts/qcom-ipq4019.dtsi
25 @@ -266,7 +266,7 @@
26
27 saw0: regulator@b089000 {
28 compatible = "qcom,saw2";
29 - reg = <0x02089000 0x1000>, <0x0b009000 0x1000>;
30 + reg = <0x0b089000 0x1000>, <0x0b009000 0x1000>;
31 regulator;
32 };
33