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.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/zephyr/shim/src/host_command.c b/zephyr/shim/src/host_command.c
deleted file mode 100644
index bf863b48de..0000000000
--- a/zephyr/shim/src/host_command.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "host_command.h"
-
-struct host_command *zephyr_find_host_command(int command)
-{
- STRUCT_SECTION_FOREACH(host_command, cmd) {
- if (cmd->command == command)
- return cmd;
- }
-
- return NULL;
-}