summaryrefslogtreecommitdiff
path: root/zephyr/shim/include/zephyr_hooks_shim.h
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/shim/include/zephyr_hooks_shim.h')
-rw-r--r--zephyr/shim/include/zephyr_hooks_shim.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/zephyr/shim/include/zephyr_hooks_shim.h b/zephyr/shim/include/zephyr_hooks_shim.h
index 1798a42aeb..f3949787bd 100644
--- a/zephyr/shim/include/zephyr_hooks_shim.h
+++ b/zephyr/shim/include/zephyr_hooks_shim.h
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -10,7 +10,6 @@
#include <zephyr/init.h>
#include <zephyr/kernel.h>
-#include <zephyr/zephyr.h>
#include "common.h"
#include "cros_version.h"
@@ -31,7 +30,7 @@ int hook_call_deferred(const struct deferred_data *data, int us);
K_WORK_DELAYABLE_DEFINE(routine##_work_data, \
(void (*)(struct k_work *))routine); \
__maybe_unused const struct deferred_data routine##_data = { \
- .work = &routine##_work_data, \
+ .work = &routine##_work_data, \
}
/**