projects
/
profile
/
ivi
/
kernel-adaptation-intel-automotive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17bfcd3
)
dtb: fix interrupt assignment for ehci/uhci on wm8505
author
Tony Prisk
<linux@prisktech.co.nz>
Sat, 13 Oct 2012 04:18:02 +0000
(17:18 +1300)
committer
Olof Johansson
<olof@lixom.net>
Tue, 16 Oct 2012 04:12:52 +0000
(21:12 -0700)
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>
arch/arm/boot/dts/wm8505.dtsi
patch
|
blob
|
history
diff --git
a/arch/arm/boot/dts/wm8505.dtsi
b/arch/arm/boot/dts/wm8505.dtsi
index
b459691
..
330f833
100644
(file)
--- 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 {