Skip to content

Commit

Permalink
arm64: dts: qcom: Fix node name of rpm-msg-ram device nodes
Browse files Browse the repository at this point in the history
According to the new DT schema for qcom,rpm-msg-ram the node name
should be sram@. memory@ is reserved for definition of physical RAM
(usable by Linux).

This fixes the following dtbs_check error on various device trees:
memory@60000: 'device_type' is a required property
        From schema: dtschema/schemas/memory.yaml

Signed-off-by: Stephan Gerhold <[email protected]>
Signed-off-by: Bjorn Andersson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
  • Loading branch information
stephan-gh authored and andersson committed Oct 24, 2021
1 parent 22efef1 commit 179811b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/msm8916.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
};
};

rpm_msg_ram: memory@60000 {
rpm_msg_ram: sram@60000 {
compatible = "qcom,rpm-msg-ram";
reg = <0x00060000 0x8000>;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/msm8994.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@
reg = <0xfc400000 0x2000>;
};

rpm_msg_ram: memory@fc428000 {
rpm_msg_ram: sram@fc428000 {
compatible = "qcom,rpm-msg-ram";
reg = <0xfc428000 0x4000>;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/msm8996.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@
};
};

rpm_msg_ram: memory@68000 {
rpm_msg_ram: sram@68000 {
compatible = "qcom,rpm-msg-ram";
reg = <0x00068000 0x6000>;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/msm8998.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@
clocks = <&xo>, <&sleep_clk>;
};

rpm_msg_ram: memory@778000 {
rpm_msg_ram: sram@778000 {
compatible = "qcom,rpm-msg-ram";
reg = <0x00778000 0x7000>;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/qcs404.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@
status = "disabled";
};

rpm_msg_ram: memory@60000 {
rpm_msg_ram: sram@60000 {
compatible = "qcom,rpm-msg-ram";
reg = <0x00060000 0x6000>;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/sdm630.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@
<&sleep_clk>;
};

rpm_msg_ram: memory@778000 {
rpm_msg_ram: sram@778000 {
compatible = "qcom,rpm-msg-ram";
reg = <0x00778000 0x7000>;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/qcom/sm6125.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
status = "disabled";
};

rpm_msg_ram: memory@45f0000 {
rpm_msg_ram: sram@45f0000 {
compatible = "qcom,rpm-msg-ram";
reg = <0x045f0000 0x7000>;
};
Expand Down

0 comments on commit 179811b

Please sign in to comment.