diff options
author | Phil Edworthy <phil.edworthy@renesas.com> | 2012-02-29 13:50:46 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-03-07 15:26:03 +0900 |
commit | de3a49b8a44cb6b272450cef060385a83dc05d74 (patch) | |
tree | 463bef1b5027c647aea52b3610a96ab761c90f3a /arch | |
parent | 55062d061790b43aee01ab3f9ac57b8596254f19 (diff) | |
download | blackbird-obmc-linux-de3a49b8a44cb6b272450cef060385a83dc05d74.tar.gz blackbird-obmc-linux-de3a49b8a44cb6b272450cef060385a83dc05d74.zip |
sh: Fix sh2a vbr table for more than 255 irqs
Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/cpu/sh2a/ex.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh2a/ex.S b/arch/sh/kernel/cpu/sh2a/ex.S index 3ead9e63965a..4568066700cf 100644 --- a/arch/sh/kernel/cpu/sh2a/ex.S +++ b/arch/sh/kernel/cpu/sh2a/ex.S @@ -66,6 +66,7 @@ vector = 0 .long exception_entry0 + vector * 6 vector = vector + 1 .endr +vector = 0 .rept 256 .long exception_entry1 + vector * 6 vector = vector + 1 |