diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2016-09-01 19:01:41 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-09-05 12:28:32 +0200 |
commit | 8ffd050cf0ecfbeb647cf985c60f67c24faab181 (patch) | |
tree | b7a507607439e7dcd113665335a0bd827f067c49 /src/include/cpu/x86/tsc.h | |
parent | a15dde0719be9f580038a6df32ff18fb017886bf (diff) | |
download | coreboot-8ffd050cf0ecfbeb647cf985c60f67c24faab181.tar.xz |
src/include: Improve code formatting
Change-Id: Ic8ffd26e61c0c3f27872699bb6aa9c39204155b7
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16390
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/include/cpu/x86/tsc.h')
-rw-r--r-- | src/include/cpu/x86/tsc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cpu/x86/tsc.h b/src/include/cpu/x86/tsc.h index 5cf4644328..e4ca0e768f 100644 --- a/src/include/cpu/x86/tsc.h +++ b/src/include/cpu/x86/tsc.h @@ -56,7 +56,7 @@ static inline unsigned long long rdtscll(void) static inline uint64_t tsc_to_uint64(tsc_t tstamp) { - return (((uint64_t)tstamp.hi) << 32) + tstamp.lo; + return (((uint64_t)tstamp.hi) << 32) + tstamp.lo; } #endif |