073-qcom-ipq4019-fix-cpu0-s-qcom-saw2-reg-value.patch 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. From d60e006ec0e425877aacc61c7ece3da0434a8fce Mon Sep 17 00:00:00 2001
  2. From: Christian Lamparter <[email protected]>
  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. while compiling an ipq4019 target, dtc will complain:
  6. regulator@b089000 unit address format error, expected "2089000"
  7. The saw0 regulator reg value seems to be
  8. copied and pasted from qcom-ipq8064.dtsi.
  9. This patch fixes the reg value to match that of the
  10. unit address which in turn silences the warning.
  11. (There is no driver for qcom,saw2 right now.
  12. So this went unnoticed)
  13. Signed-off-by: Christian Lamparter <[email protected]>
  14. Signed-off-by: John Crispin <[email protected]>
  15. ---
  16. arch/arm/boot/dts/qcom-ipq4019.dtsi | 2 +-
  17. 1 file changed, 1 insertion(+), 1 deletion(-)
  18. --- a/arch/arm/boot/dts/qcom-ipq4019.dtsi
  19. +++ b/arch/arm/boot/dts/qcom-ipq4019.dtsi
  20. @@ -262,7 +262,7 @@
  21. saw0: regulator@b089000 {
  22. compatible = "qcom,saw2";
  23. - reg = <0x02089000 0x1000>, <0x0b009000 0x1000>;
  24. + reg = <0x0b089000 0x1000>, <0x0b009000 0x1000>;
  25. regulator;
  26. };