summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/timespecgetasnanoseconds.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/timespecgetasnanoseconds.c')
-rw-r--r--cpukit/score/src/timespecgetasnanoseconds.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpukit/score/src/timespecgetasnanoseconds.c b/cpukit/score/src/timespecgetasnanoseconds.c
index 4ef1af4f62..2f8d17f4a4 100644
--- a/cpukit/score/src/timespecgetasnanoseconds.c
+++ b/cpukit/score/src/timespecgetasnanoseconds.c
@@ -20,10 +20,9 @@
#include <rtems/score/timespec.h>
#include <rtems/score/todimpl.h>
-uint64_t _Timespec_Get_As_nanoseconds(
- const struct timespec *time,
- const uint32_t nanoseconds
+uint64_t _Timespec_Get_as_nanoseconds(
+ const struct timespec *time
)
{
- return ( ((uint64_t) time->tv_sec) * 1000000000ULL ) + time->tv_nsec + nanoseconds;
+ return ( ((uint64_t) time->tv_sec) * 1000000000ULL ) + time->tv_nsec;
}