diff options
author | Alexander Clouter <alex@digriz.org.uk> | 2013-03-26 21:44:49 +0000 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-03-28 17:22:10 +0000 |
commit | e0656a9cbbd0444aaec493ed8a9420d07c356639 (patch) | |
tree | e5eb7f1d0fde09e718fd5124a22faae3f486c511 | |
parent | 835f6322c691600da5b7fb526f07b1d21d0c88ef (diff) | |
download | linux-e0656a9cbbd0444aaec493ed8a9420d07c356639.tar.bz2 |
arm: orion5x: correct IRQ used in dtsi for mv_cesa
The crypto functionality in the orion5x dtsi uses the Ethernet IRQ and
so things do not work and there is much grumbling at boot time.
The IRQ for the crypto should be 28, and not 22, and that is what this
patch corrects.
Signed-off-by: Alexander Clouter <alex@digriz.org.uk>
Acked-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | arch/arm/boot/dts/orion5x.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/orion5x.dtsi b/arch/arm/boot/dts/orion5x.dtsi index 7c2a3263c166..f7bec3b1ba32 100644 --- a/arch/arm/boot/dts/orion5x.dtsi +++ b/arch/arm/boot/dts/orion5x.dtsi @@ -96,7 +96,7 @@ reg = <0x90000 0x10000>, <0xf2200000 0x800>; reg-names = "regs", "sram"; - interrupts = <22>; + interrupts = <28>; status = "okay"; }; }; |