diff options
author | Tony Prisk <linux@prisktech.co.nz> | 2012-10-13 17:18:02 +1300 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-10-15 21:12:52 -0700 |
commit | 5448a279ebf2a8e4cc7289ff1ef382b3e71b8ea6 (patch) | |
tree | 87f63e228560f2c533bf729cb6fcbdc9df37b784 /arch/arm/boot/dts/wm8505.dtsi | |
parent | 17bfcd3adc2c2002c1fdf990640bc36aec6a90b3 (diff) |
dtb: fix interrupt assignment for ehci/uhci on wm8505
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 <linux@prisktech.co.nz>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/boot/dts/wm8505.dtsi')
-rw-r--r-- | arch/arm/boot/dts/wm8505.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/wm8505.dtsi b/arch/arm/boot/dts/wm8505.dtsi index b459691655ab..330f833ac3b0 100644 --- a/arch/arm/boot/dts/wm8505.dtsi +++ b/arch/arm/boot/dts/wm8505.dtsi @@ -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 { |