Commit 943eae03 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] missing exports of do_settimeofday() variants

frv, sh64, ia64 and sparc64 do not have do_settimeofday() exported (the
last two are using variant in kernel/time.c).  Exports added to match
the rest of architectures.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9d86b7d3
...@@ -221,6 +221,7 @@ int do_settimeofday(struct timespec *tv) ...@@ -221,6 +221,7 @@ int do_settimeofday(struct timespec *tv)
clock_was_set(); clock_was_set();
return 0; return 0;
} }
EXPORT_SYMBOL(do_settimeofday);
/* /*
* Scheduler clock - returns current time in nanosec units. * Scheduler clock - returns current time in nanosec units.
......
...@@ -253,6 +253,7 @@ int do_settimeofday(struct timespec *tv) ...@@ -253,6 +253,7 @@ int do_settimeofday(struct timespec *tv)
return 0; return 0;
} }
EXPORT_SYMBOL(do_settimeofday);
static int set_rtc_time(unsigned long nowtime) static int set_rtc_time(unsigned long nowtime)
{ {
......
...@@ -532,6 +532,7 @@ int do_settimeofday (struct timespec *tv) ...@@ -532,6 +532,7 @@ int do_settimeofday (struct timespec *tv)
clock_was_set(); clock_was_set();
return 0; return 0;
} }
EXPORT_SYMBOL(do_settimeofday);
void do_gettimeofday (struct timeval *tv) void do_gettimeofday (struct timeval *tv)
{ {
......
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