summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2021-01-05 17:22:04 -0800
committerCommit Bot <commit-bot@chromium.org>2021-01-06 23:07:02 +0000
commit240cbb638c808b4c96e10500913f13e4c67aac37 (patch)
tree98b9b18eae01d544f60b9bf2405c9860c412733f
parentde95d2a076bb2111aef75afa7fb9496016e4bc72 (diff)
downloadchrome-ec-240cbb638c808b4c96e10500913f13e4c67aac37.tar.gz
coil: remove include/i2c_slave.h
This code uses coil terms we're removing, but we don't use it in platform/cr50. Remove the code instead of replacing the terms. BUG=b:175244613 TEST=make buildall -j Change-Id: Ib7db3b37a507a7f8bf43a34d10931f7583784246 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2613451 Reviewed-by: Namyoon Woo <namyoon@chromium.org>
-rw-r--r--include/i2c_slave.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/i2c_slave.h b/include/i2c_slave.h
deleted file mode 100644
index 3145d4679b..0000000000
--- a/include/i2c_slave.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Copyright 2019 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.
- */
-
-/* I2C slave interface for Chrome EC */
-
-#ifndef __CROS_EC_I2CSLV_H
-#define __CROS_EC_I2CSLV_H
-
-/* Data structure to define I2C slave port configuration. */
-struct i2c_slv_port_t {
- const char *name; /* Port name */
- int port; /* Port */
- uint8_t slave_adr; /* slave address(7-bit without R/W) */
-};
-
-extern const struct i2c_slv_port_t i2c_slv_ports[];
-extern const unsigned int i2c_slvs_used;
-
-#endif /* __CROS_EC_I2CSLV_H */