Skip to content

Commit

Permalink
ARM: dove: convert serial DT nodes to clocks property
Browse files Browse the repository at this point in the history
of_serial now has support for using clocks property and we have
a DT clock provider. This patch replaces the hard coded clock-frequency
property with a clocks phandle to tclk.

Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
  • Loading branch information
Sebastian Hesselbarth authored and Arnd Bergmann committed Feb 28, 2013
1 parent 04e09b7 commit 8be7a96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm/boot/dts/dove.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
reg = <0x12000 0x100>;
reg-shift = <2>;
interrupts = <7>;
clock-frequency = <166666667>;
clocks = <&core_clk 0>;
status = "disabled";
};

Expand All @@ -64,7 +64,7 @@
reg = <0x12100 0x100>;
reg-shift = <2>;
interrupts = <8>;
clock-frequency = <166666667>;
clocks = <&core_clk 0>;
status = "disabled";
};

Expand All @@ -73,7 +73,7 @@
reg = <0x12000 0x100>;
reg-shift = <2>;
interrupts = <9>;
clock-frequency = <166666667>;
clocks = <&core_clk 0>;
status = "disabled";
};

Expand All @@ -82,7 +82,7 @@
reg = <0x12100 0x100>;
reg-shift = <2>;
interrupts = <10>;
clock-frequency = <166666667>;
clocks = <&core_clk 0>;
status = "disabled";
};

Expand Down

0 comments on commit 8be7a96

Please sign in to comment.