sparc64: fix sparse warning in kprobes.c
Fix following warning: kprobes.c:419:27: warning: symbol 'kprobe_trap' was not declared. Should it be static? Add proper prototype Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
48c7eca5f2
commit
758a017085
|
@ -46,4 +46,6 @@ struct kprobe_ctlblk {
|
|||
int kprobe_exceptions_notify(struct notifier_block *self,
|
||||
unsigned long val, void *data);
|
||||
int kprobe_fault_handler(struct pt_regs *regs, int trapnr);
|
||||
asmlinkage void __kprobes kprobe_trap(unsigned long trap_level,
|
||||
struct pt_regs *regs);
|
||||
#endif /* _SPARC64_KPROBES_H */
|
||||
|
|
Loading…
Reference in New Issue