Skip to content

Commit

Permalink
namespacecheck: fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Jun 16, 2008
1 parent e765ee9 commit f225293
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kernel/trace/ftrace.c
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ static struct ftrace_ops ftrace_list_end __read_mostly =
static struct ftrace_ops *ftrace_list __read_mostly = &ftrace_list_end;
ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;

void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
static void ftrace_list_func(unsigned long ip, unsigned long parent_ip)
{
struct ftrace_ops *op = ftrace_list;

4 changes: 2 additions & 2 deletions kernel/trace/trace_sched_switch.c
Original file line number Diff line number Diff line change
@@ -196,7 +196,7 @@ static void tracing_sched_unregister(void)
&ctx_trace);
}

void tracing_start_sched_switch(void)
static void tracing_start_sched_switch(void)
{
long ref;

@@ -205,7 +205,7 @@ void tracing_start_sched_switch(void)
tracing_sched_register();
}

void tracing_stop_sched_switch(void)
static void tracing_stop_sched_switch(void)
{
long ref;

0 comments on commit f225293

Please sign in to comment.