Skip to content

Commit

Permalink
[PATCH] missing exports of do_settimeofday() variants
Browse files Browse the repository at this point in the history
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: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 29, 2005
1 parent 9d86b7d commit 943eae0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/frv/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ int do_settimeofday(struct timespec *tv)
clock_was_set();
return 0;
}
EXPORT_SYMBOL(do_settimeofday);

/*
* Scheduler clock - returns current time in nanosec units.
Expand Down
1 change: 1 addition & 0 deletions arch/sh64/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ int do_settimeofday(struct timespec *tv)

return 0;
}
EXPORT_SYMBOL(do_settimeofday);

static int set_rtc_time(unsigned long nowtime)
{
Expand Down
1 change: 1 addition & 0 deletions kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,7 @@ int do_settimeofday (struct timespec *tv)
clock_was_set();
return 0;
}
EXPORT_SYMBOL(do_settimeofday);

void do_gettimeofday (struct timeval *tv)
{
Expand Down

0 comments on commit 943eae0

Please sign in to comment.