diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-09-07 17:26:08 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-09-21 06:20:21 +0200 |
commit | b766b1c76aa2258bf66569f429fb092c23813bbc (patch) | |
tree | cd99bf9bfd750768cc6c447ca8e96ede84da7430 /src/include | |
parent | e28bd4ade6f716024afdff0bac48028a42a62e71 (diff) |
timestamps: Use stash before CBMEM is usable
Change-Id: I9e927abdb1d7d9c233de5620a9a65b419e803ebf
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/3909
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/timestamp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/timestamp.h b/src/include/timestamp.h index 2a39b97827..0f56200782 100644 --- a/src/include/timestamp.h +++ b/src/include/timestamp.h @@ -59,14 +59,12 @@ enum timestamp_id { void timestamp_init(tsc_t base); void timestamp_add(enum timestamp_id id, tsc_t ts_time); void timestamp_add_now(enum timestamp_id id); -void timestamp_stash(enum timestamp_id id); void timestamp_sync(void); tsc_t get_initial_timestamp(void); #else #define timestamp_init(base) #define timestamp_add(id, time) #define timestamp_add_now(id) -#define timestamp_stash(id) #define timestamp_sync() #endif |