arch/avr32: fix build failure caused by wrong prototype

This patch fixes a build failure introduced by 1d8393171 ("avr32: use
generic ptrace_resume code") which had the static keyword as a leftover.

arch/avr32/kernel/ptrace.c:32: error: static declaration of `user_enable_single_step' follows non-static declaration
include/linux/ptrace.h:268: error: previous declaration of `user_enable_single_step' was here

References:
[1]http://kisskb.ellerman.id.au/kisskb/buildresult/2448162/

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Cc: Haavard Skinnemoen <hskinnemoen@atmel.com>
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Peter Huewe and committed by Linus Torvalds 9e584fbb 16a5b3c4

+1 -1
+1 -1
arch/avr32/kernel/ptrace.c
··· 28 THREAD_SIZE - sizeof(struct pt_regs)); 29 } 30 31 - static void user_enable_single_step(struct task_struct *tsk) 32 { 33 pr_debug("user_enable_single_step: pid=%u, PC=0x%08lx, SR=0x%08lx\n", 34 tsk->pid, task_pt_regs(tsk)->pc, task_pt_regs(tsk)->sr);
··· 28 THREAD_SIZE - sizeof(struct pt_regs)); 29 } 30 31 + void user_enable_single_step(struct task_struct *tsk) 32 { 33 pr_debug("user_enable_single_step: pid=%u, PC=0x%08lx, SR=0x%08lx\n", 34 tsk->pid, task_pt_regs(tsk)->pc, task_pt_regs(tsk)->sr);