Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5448a279 authored by Tony Prisk's avatar Tony Prisk Committed by Olof Johansson
Browse files

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: default avatarTony Prisk <linux@prisktech.co.nz>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent 17bfcd3a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 {