summaryrefslogtreecommitdiff
path: root/include/console.h
diff options
context:
space:
mode:
authorEvan Green <evgreen@chromium.org>2019-08-02 14:32:24 -0700
committerCommit Bot <commit-bot@chromium.org>2019-10-05 00:47:44 +0000
commita1216326c5d58af300b7c6f24c8597a232ced131 (patch)
treed151d7b7eb59ce8213cfb450b2dfc7379f817590 /include/console.h
parentb63e2a87a75dce8941d087c8736c5a35544ab3b0 (diff)
downloadchrome-ec-a1216326c5d58af300b7c6f24c8597a232ced131.tar.gz
printf: Convert %b to %pb
In order to turn on compile-time printf format checking, non-standard specifiers like %b (binary) must be removed. Convert that into %pb, which takes a pointer to a structure containing the value to print, and how many bits to print. Use the convenience macro BINARY_VALUE() to package these values up into a struct whose pointer is passed to printf(). Technically this is slightly more limited functionality than we used to support given all the possible flags, field width, and precision. However every existing instance in our codebase was using %0NNb, where NN is some number. If more variants are needed, the parameters structure can be expanded in the future. BUG=chromium:984041 TEST=make -j buildall BRANCH=None Change-Id: I8ef995dcf97af688fbca98ab6ff59b84092b69e3 Signed-off-by: Evan Green <evgreen@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1733100 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'include/console.h')
-rw-r--r--include/console.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/console.h b/include/console.h
index dc15e5b6d3..9246e92b25 100644
--- a/include/console.h
+++ b/include/console.h
@@ -26,6 +26,21 @@ struct hex_buffer_params {
.size = (_size) \
})
+/*
+ * Define parameters to printing in binary: the value to print, and the number
+ * of digits to print.
+ */
+
+struct binary_print_params {
+ unsigned int value;
+ uint8_t count;
+};
+
+#define BINARY_VALUE(_value, _count) (&(const struct binary_print_params){ \
+ .value = (_value), \
+ .count = (_count) \
+})
+
#define PRINTF_TIMESTAMP_NOW NULL
/* Console command; used by DECLARE_CONSOLE_COMMAND macro. */