summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/cpu
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2013-05-19 16:45:35 -0700
committerSimon Glass <sjg@chromium.org>2013-11-21 16:54:25 -0700
commit2a54d1599f4c3a95b1d39db45888b49c36465af3 (patch)
treeca392f91de99bdc044cddac270b684b1d4c1f795 /arch/sandbox/cpu
parentc2e5e802ecb7ab668ce9911b210ed68c804b349f (diff)
downloadtalos-obmc-uboot-2a54d1599f4c3a95b1d39db45888b49c36465af3.tar.gz
talos-obmc-uboot-2a54d1599f4c3a95b1d39db45888b49c36465af3.zip
sandbox: Use uint64_t instead of u64 for time
The uint64_t type is defined in linux/types.h, so is safer than u64, which is not actually a Linux type. Change-Id: Ifc9a369e6543250c49117b8d3cb3a676eee43e04 Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu')
-rw-r--r--arch/sandbox/cpu/os.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c
index c2e5f57193..db66fd31f2 100644
--- a/arch/sandbox/cpu/os.c
+++ b/arch/sandbox/cpu/os.c
@@ -8,6 +8,7 @@
#include <fcntl.h>
#include <getopt.h>
#include <stdio.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
@@ -136,7 +137,7 @@ void os_usleep(unsigned long usec)
usleep(usec);
}
-u64 __attribute__((no_instrument_function)) os_get_nsec(void)
+uint64_t __attribute__((no_instrument_function)) os_get_nsec(void)
{
#if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK)
struct timespec tp;
OpenPOWER on IntegriCloud