diff options
author | Vinod Koul <[email protected]> | 2021-03-08 11:38:22 +0530 |
---|---|---|
committer | Bjorn Andersson <[email protected]> | 2021-08-05 10:27:33 -0500 |
commit | cfdf0c27639571d7a99d00fe1ce931daa6726c27 (patch) | |
tree | 050b09efaa35e66010c4456978721b87054ecbcd | |
parent | d53dc79f9b5699873423b7912d835be4594b3577 (diff) |
arm64: dts: qcom: sdm630: don't use empty memory node
We expect bootloader to full memory details but passing empty values
can give warning, so add a default value
Signed-off-by: Vinod Koul <[email protected]>
Tested-by: Konrad Dybcio <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Bjorn Andersson <[email protected]>
-rw-r--r-- | arch/arm64/boot/dts/qcom/sdm630.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/qcom/sdm630.dtsi b/arch/arm64/boot/dts/qcom/sdm630.dtsi index c77d4e4305d6..e3772fefe03f 100644 --- a/arch/arm64/boot/dts/qcom/sdm630.dtsi +++ b/arch/arm64/boot/dts/qcom/sdm630.dtsi @@ -316,10 +316,10 @@ }; }; - memory { + memory@80000000 { device_type = "memory"; /* We expect the bootloader to fill in the reg */ - reg = <0 0 0 0>; + reg = <0x0 0x80000000 0x0 0x0>; }; pmu { |