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 <vkoul@kernel.org> Tested-by: Konrad Dybcio <konrad.dybcio@somainline.org> Link: https://lore.kernel.org/r/20210308060826.3074234-15-vkoul@kernel.org Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
parent
d53dc79f9b
commit
cfdf0c2763
|
@ -316,10 +316,10 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
memory {
|
memory@80000000 {
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
/* We expect the bootloader to fill in the reg */
|
/* We expect the bootloader to fill in the reg */
|
||||||
reg = <0 0 0 0>;
|
reg = <0x0 0x80000000 0x0 0x0>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pmu {
|
pmu {
|
||||||
|
|
Loading…
Reference in New Issue