diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-11-20 20:38:29 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-29 09:08:59 +0000 |
commit | 1a71163675b7f0f06dcb6a95b2f411ac5cac3381 (patch) | |
tree | f6f481c3db1ad3aed8bedb7e5c80ad340fde3feb /src/lib/timestamp.c | |
parent | 0ca944b16fd6c0d25bee666206ada43f95024ce3 (diff) | |
download | coreboot-1a71163675b7f0f06dcb6a95b2f411ac5cac3381.tar.xz |
lib/timestamp.c: Drop CAR_GLOBAL_MIGRATION support
Change-Id: I0ba97d7a2da02ba24de6932678c3bc936aa6554b
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37030
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/lib/timestamp.c')
-rw-r--r-- | src/lib/timestamp.c | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c index dcb3124567..7c7210cc5a 100644 --- a/src/lib/timestamp.c +++ b/src/lib/timestamp.c @@ -22,7 +22,6 @@ #include <symbols.h> #include <timer.h> #include <timestamp.h> -#include <arch/early_variables.h> #include <smp/node.h> #define MAX_TIMESTAMPS 192 @@ -31,7 +30,7 @@ DECLARE_OPTIONAL_REGION(timestamp); /* This points to the active timestamp_table and can change within a stage as CBMEM comes available. */ -static struct timestamp_table *glob_ts_table CAR_GLOBAL; +static struct timestamp_table *glob_ts_table; static void timestamp_cache_init(struct timestamp_table *ts_cache, uint64_t base) @@ -94,21 +93,17 @@ static int timestamp_should_run(void) static struct timestamp_table *timestamp_table_get(void) { - struct timestamp_table *ts_table; - - ts_table = car_get_ptr(glob_ts_table); - if (ts_table) - return ts_table; + if (glob_ts_table) + return glob_ts_table; - ts_table = timestamp_cache_get(); - car_set_ptr(glob_ts_table, ts_table); + glob_ts_table = timestamp_cache_get(); - return ts_table; + return glob_ts_table; } static void timestamp_table_set(struct timestamp_table *ts) { - car_set_ptr(glob_ts_table, ts); + glob_ts_table = ts; } static const char *timestamp_name(enum timestamp_id id) |