diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-10-13 22:55:58 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-22 20:18:55 +0100 |
commit | 69733c9b0bcd35382e2d514362a31a12a507aea3 (patch) | |
tree | 5a76e8f36d3df17894709ddc21b7ab3ff0fae5c7 /arch/mips/bcm47xx/irq.c | |
parent | 484e20acbbd4c487edb5b7fcbd9368d2201a42b6 (diff) | |
download | blackbird-obmc-linux-69733c9b0bcd35382e2d514362a31a12a507aea3.tar.gz blackbird-obmc-linux-69733c9b0bcd35382e2d514362a31a12a507aea3.zip |
MIPS: BCM47XX: add asmlinkage to plat_irq_dispatch()
plat_irq_dispatch() is called from asm code, add asmlinkage.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6043/
Diffstat (limited to 'arch/mips/bcm47xx/irq.c')
-rw-r--r-- | arch/mips/bcm47xx/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm47xx/irq.c b/arch/mips/bcm47xx/irq.c index 8cf3833b2d29..a9133e9757a0 100644 --- a/arch/mips/bcm47xx/irq.c +++ b/arch/mips/bcm47xx/irq.c @@ -28,7 +28,7 @@ #include <asm/irq_cpu.h> #include <bcm47xx.h> -void plat_irq_dispatch(void) +asmlinkage void plat_irq_dispatch(void) { u32 cause; |