summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/host_command.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/shim/src/host_command.c')
-rw-r--r--zephyr/shim/src/host_command.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/zephyr/shim/src/host_command.c b/zephyr/shim/src/host_command.c
index 7bf61ee551..c5a51332a1 100644
--- a/zephyr/shim/src/host_command.c
+++ b/zephyr/shim/src/host_command.c
@@ -1,16 +1,17 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
-#include <zephyr/zephyr.h>
+#include <zephyr/kernel.h>
#include "host_command.h"
#include "task.h"
struct host_command *zephyr_find_host_command(int command)
{
- STRUCT_SECTION_FOREACH(host_command, cmd) {
+ STRUCT_SECTION_FOREACH(host_command, cmd)
+ {
if (cmd->command == command)
return cmd;
}