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:
Sam Ravnborg 2014-05-16 23:26:10 +02:00 коммит произвёл David S. Miller
Родитель 48c7eca5f2
Коммит 758a017085
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -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 */