summaryrefslogtreecommitdiff
path: root/zephyr/program/herobrine/src/i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/program/herobrine/src/i2c.c')
-rw-r--r--zephyr/program/herobrine/src/i2c.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/zephyr/program/herobrine/src/i2c.c b/zephyr/program/herobrine/src/i2c.c
deleted file mode 100644
index 8cf2cfc232..0000000000
--- a/zephyr/program/herobrine/src/i2c.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* 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 "i2c.h"
-#include "i2c/i2c.h"
-
-/* Herobrine-NPCX9 board specific i2c implementation */
-
-#ifdef CONFIG_PLATFORM_EC_I2C_PASSTHRU_RESTRICTED
-int board_allow_i2c_passthru(const struct i2c_cmd_desc_t *cmd_desc)
-{
- return (i2c_get_device_for_port(cmd_desc->port) ==
- i2c_get_device_for_port(I2C_PORT_VIRTUAL_BATTERY));
-}
-#endif