aboutsummaryrefslogtreecommitdiff
path: root/src/include/timestamp.h
diff options
context:
space:
mode:
authorBora Guvendik <bora.guvendik@intel.com>2021-11-22 16:03:39 -0800
committerFelix Held <felix-coreboot@felixheld.de>2022-01-21 22:42:19 +0000
commitbf73c498d448678fd19354d66c03d852fcb5ec1d (patch)
tree68678157308ff8e00a2dc067b44a6378aa90fbd8 /src/include/timestamp.h
parentf33c9bf79a8ee80067920d7dd0ec15360b42703b (diff)
timestamp: Allow timestamp_add to accept a negative number
Change timestamp_add to accept negative values for events that took place before coreboot started executing. TEST=Boot to OS, check cbmem -t Signed-off-by: Bora Guvendik <bora.guvendik@intel.com> Change-Id: I90afc13a8e92693d86e3358f05e0a0cb7cdbca9b Reviewed-on: https://review.coreboot.org/c/coreboot/+/59554 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/include/timestamp.h')
-rw-r--r--src/include/timestamp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/timestamp.h b/src/include/timestamp.h
index 647cd13897..cbe9934069 100644
--- a/src/include/timestamp.h
+++ b/src/include/timestamp.h
@@ -19,7 +19,7 @@ void timestamp_init(uint64_t base);
* inside REGION(timestamp) before cbmem comes online. For later stages, timestamps
* added before cbmem_[recovery|initialize] calls will be lost.
*/
-void timestamp_add(enum timestamp_id id, uint64_t ts_time);
+void timestamp_add(enum timestamp_id id, int64_t ts_time);
/* Calls timestamp_add with current timestamp. */
void timestamp_add_now(enum timestamp_id id);