summaryrefslogtreecommitdiff
path: root/common/keyboard_8042.c
diff options
context:
space:
mode:
authorEvan Green <evgreen@chromium.org>2019-09-23 11:02:41 -0700
committerCommit Bot <commit-bot@chromium.org>2019-10-05 00:47:44 +0000
commite34fca3e01d75552ad8d712879c3ccd6a6168584 (patch)
treee2a71c2fa4dd52ffe459d10156276fbb0b5aa597 /common/keyboard_8042.c
parenta1216326c5d58af300b7c6f24c8597a232ced131 (diff)
downloadchrome-ec-e34fca3e01d75552ad8d712879c3ccd6a6168584.tar.gz
builtin: Introduce and use inttypes.h
In order to pass the right printf format specifiers for certain types that are compiled both in 32-bit EC and 64-bit host environments, standard macros PRIx64 and PRId64 must be introduced. These specify the correct printf format specifier in the given compilation environment for printing a 64-bit value. On the host, inttypes.h already exists. Add an inttypes.h for the EC codebase so that these macros can be used where they're needed. BUG=chromium:984041 TEST=make -j buildall BRANCH=none Change-Id: I76e3bdc88aef7da6e5234d5b86b595f7138ea9a1 Signed-off-by: Evan Green <evgreen@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1819642 Reviewed-by: caveh jalali <caveh@chromium.org> Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
Diffstat (limited to 'common/keyboard_8042.c')
-rw-r--r--common/keyboard_8042.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/keyboard_8042.c b/common/keyboard_8042.c
index 596c66d317..69669a740a 100644
--- a/common/keyboard_8042.c
+++ b/common/keyboard_8042.c
@@ -916,8 +916,8 @@ static int command_typematic(int argc, char **argv)
ccprintf("From host: 0x%02x\n", typematic_value_from_host);
ccprintf("First delay: %3d ms\n", typematic_first_delay / 1000);
ccprintf("Inter delay: %3d ms\n", typematic_inter_delay / 1000);
- ccprintf("Now: %.6ld\n", get_time().val);
- ccprintf("Deadline: %.6ld\n", typematic_deadline.val);
+ ccprintf("Now: %.6" PRId64 "\n", get_time().val);
+ ccprintf("Deadline: %.6" PRId64 "\n", typematic_deadline.val);
ccputs("Repeat scan code: {");
for (i = 0; i < typematic_len; ++i)