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: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
e762232f94
commit
4cc3e3e164
|
@ -1023,7 +1023,7 @@ backlight: backlight {
|
|||
default-brightness-level = <6>;
|
||||
};
|
||||
|
||||
clk32k_in: clock@0 {
|
||||
clk32k_in: clock-32k {
|
||||
compatible = "fixed-clock";
|
||||
clock-frequency = <32768>;
|
||||
#clock-cells = <0>;
|
||||
|
|
|
@ -301,7 +301,7 @@ mmc@700b0600 {
|
|||
vqmmc-supply = <&vdd_1v8>;
|
||||
};
|
||||
|
||||
clk32k_in: clock@0 {
|
||||
clk32k_in: clock-32k {
|
||||
compatible = "fixed-clock";
|
||||
clock-frequency = <32768>;
|
||||
#clock-cells = <0>;
|
||||
|
|
|
@ -40,7 +40,7 @@ mmc@700b0600 {
|
|||
non-removable;
|
||||
};
|
||||
|
||||
clk32k_in: clock@0 {
|
||||
clk32k_in: clock-32k {
|
||||
compatible = "fixed-clock";
|
||||
clock-frequency = <32768>;
|
||||
#clock-cells = <0>;
|
||||
|
|
|
@ -1586,7 +1586,7 @@ mmc@700b0600 {
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
clk32k_in: clock@0 {
|
||||
clk32k_in: clock-32k {
|
||||
compatible = "fixed-clock";
|
||||
clock-frequency = <32768>;
|
||||
#clock-cells = <0>;
|
||||
|
|
|
@ -1645,7 +1645,7 @@ flash@0 {
|
|||
};
|
||||
};
|
||||
|
||||
clk32k_in: clock@0 {
|
||||
clk32k_in: clock-32k {
|
||||
compatible = "fixed-clock";
|
||||
clock-frequency = <32768>;
|
||||
#clock-cells = <0>;
|
||||
|
|
|
@ -1726,7 +1726,7 @@ interrupt-controller@702f9000 {
|
|||
};
|
||||
};
|
||||
|
||||
clk32k_in: clock@0 {
|
||||
clk32k_in: clock-32k {
|
||||
compatible = "fixed-clock";
|
||||
clock-frequency = <32768>;
|
||||
#clock-cells = <0>;
|
||||
|
|
Loading…
Reference in New Issue