x86: Mark ptrace_get_debugreg() as static
authorJaswinder Singh Rajput <jaswinder@kernel.org>
Wed, 1 Jul 2009 14:22:30 +0000 (19:52 +0530)
committerIngo Molnar <mingo@elte.hu>
Wed, 1 Jul 2009 14:53:27 +0000 (16:53 +0200)
This sparse warning:

  arch/x86/kernel/ptrace.c:560:15: warning: symbol 'ptrace_get_debugreg' was not declared. Should it be static?

triggers because ptrace_get_debugreg() is global but is only
used in a single .c file. change ptrace_get_debugreg() to
static to fix that - this also addresses the sparse warning.

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
LKML-Reference: <1246458150.6940.19.camel@hpdv5.satnam>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/ptrace.c

index b457f78..cabdabc 100644 (file)
@@ -557,7 +557,7 @@ restore:
 /*
  * Handle PTRACE_PEEKUSR calls for the debug register area.
  */
-unsigned long ptrace_get_debugreg(struct task_struct *tsk, int n)
+static unsigned long ptrace_get_debugreg(struct task_struct *tsk, int n)
 {
        struct thread_struct *thread = &(tsk->thread);
        unsigned long val = 0;