Message ID | 20210308060826.3074234-15-vkoul@kernel.org |
---|---|
State | New |
Headers | show |
Series | arm64: qcom: fix dtbs_check warning | expand |
On 08.03.2021 07:08, Vinod Koul wrote: > 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> > --- > arch/arm64/boot/dts/qcom/sdm630.dtsi | 4 ++-- SDM630 SONY Kirin boots. Tested-by: Konrad Dybcio <konrad.dybcio@somainline.org>
diff --git a/arch/arm64/boot/dts/qcom/sdm630.dtsi b/arch/arm64/boot/dts/qcom/sdm630.dtsi index 5a7cf85d0cf1..23679b9e5e60 100644 --- a/arch/arm64/boot/dts/qcom/sdm630.dtsi +++ b/arch/arm64/boot/dts/qcom/sdm630.dtsi @@ -311,10 +311,10 @@ scm { }; }; - 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 {
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> --- arch/arm64/boot/dts/qcom/sdm630.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- 2.26.2