Commit f699980b authored by Michal Simek's avatar Michal Simek

microblaze: Fix sparse warning - sw_exceptions

Function sw_exception is linked with asm code.

Warning log:
CHECK   arch/microblaze/kernel/exceptions.c
arch/microblaze/kernel/exceptions.c:53:6: warning: symbol 'sw_exception' was not declared. Should it be static?
Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 29e3dbb1
...@@ -66,6 +66,8 @@ ...@@ -66,6 +66,8 @@
asmlinkage void full_exception(struct pt_regs *regs, unsigned int type, asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
int fsr, int addr); int fsr, int addr);
asmlinkage void sw_exception(struct pt_regs *regs);
void die(const char *str, struct pt_regs *fp, long err); void die(const char *str, struct pt_regs *fp, long err);
void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr); void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr);
......
...@@ -50,7 +50,7 @@ void die(const char *str, struct pt_regs *fp, long err) ...@@ -50,7 +50,7 @@ void die(const char *str, struct pt_regs *fp, long err)
} }
/* for user application debugging */ /* for user application debugging */
void sw_exception(struct pt_regs *regs) asmlinkage void sw_exception(struct pt_regs *regs)
{ {
_exception(SIGTRAP, regs, TRAP_BRKPT, regs->r16); _exception(SIGTRAP, regs, TRAP_BRKPT, regs->r16);
flush_dcache_range(regs->r16, regs->r16 + 0x4); flush_dcache_range(regs->r16, regs->r16 + 0x4);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment