Commit 4cc3e3e1 authored by Thierry Reding's avatar Thierry Reding
Browse files

arm64: tegra: Rename top-level clocks



Clocks defined at the top level in device tree are no longer part of a
simple bus and therefore don't have a reg property. Nodes without a reg
property shouldn't have a unit-address either, so drop the unit address
from the node names. To ensure nodes aren't duplicated (in which case
they would end up merged in the final DTB), append the name of the clock
to the node name.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent e762232f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1023,7 +1023,7 @@
		default-brightness-level = <6>;
	};

	clk32k_in: clock@0 {
	clk32k_in: clock-32k {
		compatible = "fixed-clock";
		clock-frequency = <32768>;
		#clock-cells = <0>;
+1 −1
Original line number Diff line number Diff line
@@ -301,7 +301,7 @@
		vqmmc-supply = <&vdd_1v8>;
	};

	clk32k_in: clock@0 {
	clk32k_in: clock-32k {
		compatible = "fixed-clock";
		clock-frequency = <32768>;
		#clock-cells = <0>;
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@
		non-removable;
	};

	clk32k_in: clock@0 {
	clk32k_in: clock-32k {
		compatible = "fixed-clock";
		clock-frequency = <32768>;
		#clock-cells = <0>;
+1 −1
Original line number Diff line number Diff line
@@ -1586,7 +1586,7 @@
		status = "okay";
	};

	clk32k_in: clock@0 {
	clk32k_in: clock-32k {
		compatible = "fixed-clock";
		clock-frequency = <32768>;
		#clock-cells = <0>;
+1 −1
Original line number Diff line number Diff line
@@ -1645,7 +1645,7 @@
		};
	};

	clk32k_in: clock@0 {
	clk32k_in: clock-32k {
		compatible = "fixed-clock";
		clock-frequency = <32768>;
		#clock-cells = <0>;
Loading