Commit 69b73e95 authored by Thomas Gleixner's avatar Thomas Gleixner

um/time: Fixup namespace collision

The new timer_setup() function for struct timer_list collides with a
private um function. Rename it.

Fixes: 686fef92 ("timer: Prepare to change timer callback argument type")
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Richard Weinberger <richard@nod.at>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: user-mode-linux-devel@lists.sourceforge.net
Cc: Kees Cook  <keescook@chromium.org>
parent 686fef92
...@@ -98,7 +98,7 @@ static struct clocksource timer_clocksource = { ...@@ -98,7 +98,7 @@ static struct clocksource timer_clocksource = {
.flags = CLOCK_SOURCE_IS_CONTINUOUS, .flags = CLOCK_SOURCE_IS_CONTINUOUS,
}; };
static void __init timer_setup(void) static void __init um_timer_setup(void)
{ {
int err; int err;
...@@ -132,5 +132,5 @@ void read_persistent_clock(struct timespec *ts) ...@@ -132,5 +132,5 @@ void read_persistent_clock(struct timespec *ts)
void __init time_init(void) void __init time_init(void)
{ {
timer_set_signal_handler(); timer_set_signal_handler();
late_time_init = timer_setup; late_time_init = um_timer_setup;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment