diff options
author | Jiri Slaby <jslaby@suse.cz> | 2022-07-19 11:56:20 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2022-08-06 11:33:54 +0300 |
commit | 221f9d9cdf429df8c3843b4291f4f412fde11543 (patch) | |
tree | 13c2b31094f4a3b6bf1b84502d2e4eca023ac33d /kernel | |
parent | 6614a3c3164a5df2b54abb0b3559f51041cf705b (diff) | |
download | linux-221f9d9cdf429df8c3843b4291f4f412fde11543.tar.xz |
posix-timers: Make do_clock_gettime() static
do_clock_gettime() is used only in posix-stubs.c, so make it static. It avoids
a compiler warning too:
time/posix-stubs.c:73:5: warning: no previous prototype for ‘do_clock_gettime’ [-Wmissing-prototypes]
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20220719085620.30567-1-jslaby@suse.cz
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time/posix-stubs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/time/posix-stubs.c b/kernel/time/posix-stubs.c index fcb3b21d8bdc..90ea5f373e50 100644 --- a/kernel/time/posix-stubs.c +++ b/kernel/time/posix-stubs.c @@ -70,7 +70,7 @@ SYSCALL_DEFINE2(clock_settime, const clockid_t, which_clock, return do_sys_settimeofday64(&new_tp, NULL); } -int do_clock_gettime(clockid_t which_clock, struct timespec64 *tp) +static int do_clock_gettime(clockid_t which_clock, struct timespec64 *tp) { switch (which_clock) { case CLOCK_REALTIME: @@ -90,6 +90,7 @@ int do_clock_gettime(clockid_t which_clock, struct timespec64 *tp) return 0; } + SYSCALL_DEFINE2(clock_gettime, const clockid_t, which_clock, struct __kernel_timespec __user *, tp) { |