Skip to content

Commit 0543889

Browse files
committed
Merge tag 'at91-fixes' of git://github.com/at91linux/linux-at91 into fixes
Merge "at91: fixes for 3.16 #2" from Nicolas Ferre: Second AT91 fixes series for 3.16 - fix clock definitions after the move to CCF for: * at91sam9n12 (ohci) * at91sam9x5 (ohci, pwm) * tag 'at91-fixes' of git://github.com/at91linux/linux-at91: ARM: at91/dt: add missing clocks property to pwm node in sam9x5.dtsi ARM: at91/dt: fix usb0 clocks definition in sam9n12 dtsi ARM: at91: at91sam9x5: correct typo error for ohci clock Signed-off-by: Olof Johansson <[email protected]>
2 parents 81cca64 + e0d69e1 commit 0543889

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

arch/arm/boot/dts/at91sam9n12.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -925,7 +925,7 @@
925925
compatible = "atmel,at91rm9200-ohci", "usb-ohci";
926926
reg = <0x00500000 0x00100000>;
927927
interrupts = <22 IRQ_TYPE_LEVEL_HIGH 2>;
928-
clocks = <&usb>, <&uhphs_clk>, <&udphs_clk>,
928+
clocks = <&usb>, <&uhphs_clk>, <&uhphs_clk>,
929929
<&uhpck>;
930930
clock-names = "usb_clk", "ohci_clk", "hclk", "uhpck";
931931
status = "disabled";

arch/arm/boot/dts/at91sam9x5.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,7 @@
11241124
compatible = "atmel,at91sam9rl-pwm";
11251125
reg = <0xf8034000 0x300>;
11261126
interrupts = <18 IRQ_TYPE_LEVEL_HIGH 4>;
1127+
clocks = <&pwm_clk>;
11271128
#pwm-cells = <3>;
11281129
status = "disabled";
11291130
};
@@ -1155,8 +1156,7 @@
11551156
compatible = "atmel,at91rm9200-ohci", "usb-ohci";
11561157
reg = <0x00600000 0x100000>;
11571158
interrupts = <22 IRQ_TYPE_LEVEL_HIGH 2>;
1158-
clocks = <&usb>, <&uhphs_clk>, <&udphs_clk>,
1159-
<&uhpck>;
1159+
clocks = <&usb>, <&uhphs_clk>, <&uhphs_clk>, <&uhpck>;
11601160
clock-names = "usb_clk", "ohci_clk", "hclk", "uhpck";
11611161
status = "disabled";
11621162
};

0 commit comments

Comments
 (0)