diff options
author | Emilio López <emilio@elopez.com.ar> | 2013-03-28 01:20:39 +0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-04-05 01:42:05 +0400 |
commit | 9ff49ec75ee2b8d4dc2b92d24d5587a5b731f0e3 (patch) | |
tree | 1412af7c8a2e4a45036d27b61f762f567da837e9 | |
parent | 07c60ef775568d2190f93786c464e30696c10b95 (diff) | |
download | linux-9ff49ec75ee2b8d4dc2b92d24d5587a5b731f0e3.tar.xz |
arm: sunxi: use the right clock phandles for UARTs
All the UARTs are connected to clock gates; now that our clock driver
is able to handle them, make the switch.
Signed-off-by: Emilio López <emilio@elopez.com.ar>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
-rw-r--r-- | arch/arm/boot/dts/sun4i-a10.dtsi | 12 | ||||
-rw-r--r-- | arch/arm/boot/dts/sunxi.dtsi | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/arch/arm/boot/dts/sun4i-a10.dtsi b/arch/arm/boot/dts/sun4i-a10.dtsi index 68a27fc4491f..6b3a6b25f1f8 100644 --- a/arch/arm/boot/dts/sun4i-a10.dtsi +++ b/arch/arm/boot/dts/sun4i-a10.dtsi @@ -54,7 +54,7 @@ interrupts = <1>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 16>; status = "disabled"; }; @@ -64,7 +64,7 @@ interrupts = <3>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 18>; status = "disabled"; }; @@ -74,7 +74,7 @@ interrupts = <17>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 20>; status = "disabled"; }; @@ -84,7 +84,7 @@ interrupts = <18>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 21>; status = "disabled"; }; @@ -94,7 +94,7 @@ interrupts = <19>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 22>; status = "disabled"; }; @@ -104,7 +104,7 @@ interrupts = <20>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 23>; status = "disabled"; }; }; diff --git a/arch/arm/boot/dts/sunxi.dtsi b/arch/arm/boot/dts/sunxi.dtsi index 87b2cce11b1f..a8d47e200f87 100644 --- a/arch/arm/boot/dts/sunxi.dtsi +++ b/arch/arm/boot/dts/sunxi.dtsi @@ -191,7 +191,7 @@ interrupts = <2>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 17>; status = "disabled"; }; @@ -201,7 +201,7 @@ interrupts = <4>; reg-shift = <2>; reg-io-width = <4>; - clocks = <&osc>; + clocks = <&apb1_gates 19>; status = "disabled"; }; }; |