Skip to content

Commit

Permalink
dtb: fix interrupt assignment for ehci/uhci on wm8505
Browse files Browse the repository at this point in the history
EHCI and UHCI devices in wm8505.dtsi should use IRQ 1 & 0
respectively - not 43 as used on newer models.

Signed-off-by: Tony Prisk <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
  • Loading branch information
tonyprisk authored and olofj committed Oct 16, 2012
1 parent 17bfcd3 commit 5448a27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/wm8505.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@
ehci@d8007100 {
compatible = "via,vt8500-ehci";
reg = <0xd8007100 0x200>;
interrupts = <43>;
interrupts = <1>;
};

uhci@d8007300 {
compatible = "platform-uhci";
reg = <0xd8007300 0x200>;
interrupts = <43>;
interrupts = <0>;
};

fb@d8050800 {
Expand Down

0 comments on commit 5448a27

Please sign in to comment.