diff options
author | Yoichi Yuasa <yuasa@linux-mips.org> | 2013-05-28 01:23:22 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-06-06 16:11:25 +0200 |
commit | 406b5ee22215554a37760b6fa807da6ad4d52f52 (patch) | |
tree | ba67e84c9e95d386895edc0e820a2387e24e00ef /arch/mips | |
parent | a9a6e7a09598013ff97e34ebd84c39d1f51f261a (diff) | |
download | op-kernel-dev-406b5ee22215554a37760b6fa807da6ad4d52f52.zip op-kernel-dev-406b5ee22215554a37760b6fa807da6ad4d52f52.tar.gz |
MIPS: rtlx: Fix implicit declaration of function set_vi_handler()
arch/mips/kernel/rtlx.c: In function 'rtlx_module_init':
arch/mips/kernel/rtlx.c:523:3: error: implicit declaration of function 'set_vi_handler' [-Werror=implicit-function-declaration]
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5340/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/rtlx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/kernel/rtlx.c b/arch/mips/kernel/rtlx.c index 93c070b..6fa198d 100644 --- a/arch/mips/kernel/rtlx.c +++ b/arch/mips/kernel/rtlx.c @@ -40,6 +40,7 @@ #include <asm/processor.h> #include <asm/vpe.h> #include <asm/rtlx.h> +#include <asm/setup.h> static struct rtlx_info *rtlx; static int major; |