diff options
author | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | 2013-01-29 21:59:46 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-02-28 18:57:15 +0100 |
commit | 8be7a962e86ac47b5ee2b339e08cca1e5c063c15 (patch) | |
tree | 14f01f5e0d9a047f4cba44447a919e28483f0284 /arch/arm | |
parent | 04e09b72731f4a49f8f0c2f882fe838a865c847c (diff) | |
download | linux-3.10-8be7a962e86ac47b5ee2b339e08cca1e5c063c15.tar.gz linux-3.10-8be7a962e86ac47b5ee2b339e08cca1e5c063c15.tar.bz2 linux-3.10-8be7a962e86ac47b5ee2b339e08cca1e5c063c15.zip |
ARM: dove: convert serial DT nodes to clocks property
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>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/dove.dtsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/dove.dtsi b/arch/arm/boot/dts/dove.dtsi index c0722030071..67dbe20868a 100644 --- a/arch/arm/boot/dts/dove.dtsi +++ b/arch/arm/boot/dts/dove.dtsi @@ -55,7 +55,7 @@ reg = <0x12000 0x100>; reg-shift = <2>; interrupts = <7>; - clock-frequency = <166666667>; + clocks = <&core_clk 0>; status = "disabled"; }; @@ -64,7 +64,7 @@ reg = <0x12100 0x100>; reg-shift = <2>; interrupts = <8>; - clock-frequency = <166666667>; + clocks = <&core_clk 0>; status = "disabled"; }; @@ -73,7 +73,7 @@ reg = <0x12000 0x100>; reg-shift = <2>; interrupts = <9>; - clock-frequency = <166666667>; + clocks = <&core_clk 0>; status = "disabled"; }; @@ -82,7 +82,7 @@ reg = <0x12100 0x100>; reg-shift = <2>; interrupts = <10>; - clock-frequency = <166666667>; + clocks = <&core_clk 0>; status = "disabled"; }; |