summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/console_buffer.c
diff options
context:
space:
mode:
authorJeremy Bettis <jbettis@google.com>2022-11-14 14:48:22 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-11-16 10:50:30 +0000
commit5ddb5d2ea879164a420fb7f4335d5c9d12fdf6cd (patch)
tree3d74eb966fc1b667a0cb38c95038343a56b6ee93 /zephyr/shim/src/console_buffer.c
parent2bbef559d259197864a6610b04d2745274f47315 (diff)
downloadchrome-ec-5ddb5d2ea879164a420fb7f4335d5c9d12fdf6cd.tar.gz
zephyr/shim: Sort header files
Sort all headers in zephyr/test with the clang-format rules used by the zephyr project. BRANCH=None BUG=b:247100970 TEST=CQ Signed-off-by: Jeremy Bettis <jbettis@google.com> Change-Id: I5fefbad560d33e2e8be1b02d0db618a19fdd403d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4024019 Reviewed-by: Tomasz Michalec <tmichalec@google.com> Code-Coverage: Zoss <zoss-cl-coverage@prod.google.com> Tested-by: Jeremy Bettis <jbettis@chromium.org> Commit-Queue: Tomasz Michalec <tmichalec@google.com> Auto-Submit: Jeremy Bettis <jbettis@chromium.org>
Diffstat (limited to 'zephyr/shim/src/console_buffer.c')
-rw-r--r--zephyr/shim/src/console_buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zephyr/shim/src/console_buffer.c b/zephyr/shim/src/console_buffer.c
index dad0031267..f5e80b2d20 100644
--- a/zephyr/shim/src/console_buffer.c
+++ b/zephyr/shim/src/console_buffer.c
@@ -3,12 +3,12 @@
* found in the LICENSE file.
*/
-#include <zephyr/kernel.h>
-
#include "common.h"
#include "console.h"
#include "ec_commands.h"
+#include <zephyr/kernel.h>
+
static char console_buf[CONFIG_PLATFORM_EC_HOSTCMD_CONSOLE_BUF_SIZE];
static uint32_t previous_snapshot_idx;
static uint32_t current_snapshot_idx;