Skip to content

Commit

Permalink
arm64: dts: exynos: Remove unneeded address space mapping for soc node
Browse files Browse the repository at this point in the history
Remove the address space mapping between root and soc nodes to fix
DTC warnings in Exynos5433 and Exynos7 like:

    arch/arm64/boot/dts/exynos/exynos5433-tm2.dtb:
        Warning (unit_address_vs_reg): /soc: node has a reg or ranges property, but no unit name

Signed-off-by: Krzysztof Kozlowski <[email protected]>
Tested-by: Marek Szyprowski <[email protected]>
  • Loading branch information
krzk committed Apr 29, 2018
1 parent d98b53b commit ef72171
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions arch/arm64/boot/dts/exynos/exynos5433.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

/ {
compatible = "samsung,exynos5433";
#address-cells = <2>;
#size-cells = <2>;
#address-cells = <1>;
#size-cells = <1>;

interrupt-parent = <&gic>;

Expand Down Expand Up @@ -235,7 +235,7 @@
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x0 0x0 0x18000000>;
ranges;

arm_a53_pmu {
compatible = "arm,cortex-a53-pmu", "arm,armv8-pmuv3";
Expand Down
6 changes: 3 additions & 3 deletions arch/arm64/boot/dts/exynos/exynos7.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
/ {
compatible = "samsung,exynos7";
interrupt-parent = <&gic>;
#address-cells = <2>;
#size-cells = <2>;
#address-cells = <1>;
#size-cells = <1>;

aliases {
pinctrl0 = &pinctrl_alive;
Expand Down Expand Up @@ -70,7 +70,7 @@
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0 0 0 0x18000000>;
ranges;

chipid@10000000 {
compatible = "samsung,exynos4210-chipid";
Expand Down

0 comments on commit ef72171

Please sign in to comment.