diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-02-08 09:45:14 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-02-19 09:36:39 +0100 |
commit | df1cc3da2134bc10e6edc62709013a10e03e4106 (patch) | |
tree | 183a18ab06d5ed15733292b590738b94894268a3 /arch/mips | |
parent | f7be4e754b61681467f873400cbaa42a013b8973 (diff) | |
download | kernel_goldelico_gta04-df1cc3da2134bc10e6edc62709013a10e03e4106.zip kernel_goldelico_gta04-df1cc3da2134bc10e6edc62709013a10e03e4106.tar.gz kernel_goldelico_gta04-df1cc3da2134bc10e6edc62709013a10e03e4106.tar.bz2 |
MIPS: SMTC: fix implicit declaration of set_vi_handler
This patch fixes the following implicit declaration while building with
MIPS SMTC support enabled:
arch/mips/kernel/smtc.c: In function 'setup_cross_vpe_interrupts':
arch/mips/kernel/smtc.c:1205:2: error: implicit declaration of function
'set_vi_handler' [-Werror=implicit-function-declaration]
cc1: all warnings being treated as errors
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/4931/
Signed-off-by: John Crispin <blogic@openwrt.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/smtc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index 1d47843..0822232 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c @@ -41,6 +41,7 @@ #include <asm/addrspace.h> #include <asm/smtc.h> #include <asm/smtc_proc.h> +#include <asm/setup.h> /* * SMTC Kernel needs to manipulate low-level CPU interrupt mask |