um: Remove unused timeval_to_ns() function
authorDavid Gow <davidgow@google.com>
Thu, 24 Feb 2022 08:12:33 +0000 (16:12 +0800)
committerRichard Weinberger <richard@nod.at>
Fri, 11 Mar 2022 09:49:50 +0000 (10:49 +0100)
The timeval_to_ns() function doesn't appear to be used anywhere, as far
as I (or git grep) can tell, and clang throws up a warning about it:

../arch/um/os-Linux/time.c:21:25: warning: unused function 'timeval_to_ns' [-Wunused-function]
static inline long long timeval_to_ns(const struct timeval *tv)
                        ^
1 warning generated.

Signed-off-by: David Gow <davidgow@google.com>
Acked-By: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/os-Linux/time.c

index 6c5041c..4d5591d 100644 (file)
 
 static timer_t event_high_res_timer = 0;
 
-static inline long long timeval_to_ns(const struct timeval *tv)
-{
-       return ((long long) tv->tv_sec * UM_NSEC_PER_SEC) +
-               tv->tv_usec * UM_NSEC_PER_USEC;
-}
-
 static inline long long timespec_to_ns(const struct timespec *ts)
 {
        return ((long long) ts->tv_sec * UM_NSEC_PER_SEC) + ts->tv_nsec;