Skip to content

Commit

Permalink
tick: Move the export of tick_broadcast_oneshot_control to the proper…
Browse files Browse the repository at this point in the history
… place

tick_broadcast_oneshot_control got moved from tick-broadcast to
tick-common, but the export stayed in the old place. Fix it up.

Fixes: f32dd11 'tick/broadcast: Make idle check independent from mode and config'
Reported-by: Ingo Molnar <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
  • Loading branch information
KAGA-KOKO committed Jul 14, 2015
1 parent 01e2d06 commit 0f44705
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion kernel/time/tick-broadcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,6 @@ int __tick_broadcast_oneshot_control(enum tick_broadcast_state state)
raw_spin_unlock(&tick_broadcast_lock);
return ret;
}
EXPORT_SYMBOL_GPL(tick_broadcast_oneshot_control);

/*
* Reset the one shot broadcast for a cpu
Expand Down
1 change: 1 addition & 0 deletions kernel/time/tick-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ int tick_broadcast_oneshot_control(enum tick_broadcast_state state)

return __tick_broadcast_oneshot_control(state);
}
EXPORT_SYMBOL_GPL(tick_broadcast_oneshot_control);

#ifdef CONFIG_HOTPLUG_CPU
/*
Expand Down

0 comments on commit 0f44705

Please sign in to comment.