Commit bd73a3dd authored by Christian Lamparter's avatar Christian Lamparter Committed by Andy Gross

ARM: dts: qcom: ipq4019: fix cpu0's qcom,saw2 reg value

while compiling an ipq4019 target, dtc will complain:
regulator@b089000 unit address format error, expected "2089000"

The saw0 regulator reg value seems to be
copied and pasted from qcom-ipq8064.dtsi.

This patch fixes the reg value to match that of the
unit address which in turn silences the warning.
(There is no driver for qcom,saw2 right now.
So this went unnoticed)
Signed-off-by: default avatarChristian Lamparter <chunkeey@gmail.com>
Signed-off-by: default avatarJohn Crispin <john@phrozen.org>
Signed-off-by: default avatarAndy Gross <andy.gross@linaro.org>
parent bcb9ab4c
......@@ -320,7 +320,7 @@ acc3: clock-controller@b0b8000 {
saw0: regulator@b089000 {
compatible = "qcom,saw2";
reg = <0x02089000 0x1000>, <0x0b009000 0x1000>;
reg = <0x0b089000 0x1000>, <0x0b009000 0x1000>;
regulator;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment