summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDossym Nurmukhanov <dossym@google.com>2020-12-11 11:07:53 -0800
committerCommit Bot <commit-bot@chromium.org>2020-12-12 12:55:40 +0000
commita86aecb2de50437622e91ee451079175cdef5e1d (patch)
tree12956101cbe202e8d6e32df97ac2ae51015c12a6
parente9be6c5c1be5649f700e1d839d0cc823a1e5edd7 (diff)
downloadchrome-ec-a86aecb2de50437622e91ee451079175cdef5e1d.tar.gz
COIL: Rename ec_ec_comm* files to inclusive language
Rename the files to server/client instead BUG=none TEST=Rebuild and run on volteer BRANCH=none Signed-off-by: dossym@chromium.org Change-Id: Ibcbdcddfab1b878ff48fc4cb76307efe6de4fac0 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2586037 Reviewed-by: Nicolas Boichat <drinkcat@chromium.org>
-rw-r--r--board/hammer/board.c2
-rw-r--r--common/battery.c2
-rw-r--r--common/build.mk4
-rw-r--r--common/charge_state_v2.c4
-rw-r--r--common/ec_ec_comm_client.c (renamed from common/ec_ec_comm_master.c)2
-rw-r--r--common/ec_ec_comm_server.c (renamed from common/ec_ec_comm_slave.c)2
-rw-r--r--include/charge_state_v2.h2
-rw-r--r--include/ec_ec_comm_client.h (renamed from include/ec_ec_comm_master.h)0
-rw-r--r--include/ec_ec_comm_server.h (renamed from include/ec_ec_comm_slave.h)0
9 files changed, 9 insertions, 9 deletions
diff --git a/board/hammer/board.c b/board/hammer/board.c
index 843aa07dbc..c0bb79b83f 100644
--- a/board/hammer/board.c
+++ b/board/hammer/board.c
@@ -10,7 +10,7 @@
#include "driver/charger/isl923x.h"
#include "driver/led/lm3630a.h"
#include "ec_version.h"
-#include "ec_ec_comm_slave.h"
+#include "ec_ec_comm_server.h"
#include "gpio.h"
#include "hooks.h"
#include "hwtimer.h"
diff --git a/common/battery.c b/common/battery.c
index abb7ec3d0c..c61a650047 100644
--- a/common/battery.c
+++ b/common/battery.c
@@ -9,7 +9,7 @@
#include "charge_state.h"
#include "common.h"
#include "console.h"
-#include "ec_ec_comm_master.h"
+#include "ec_ec_comm_client.h"
#include "extpower.h"
#include "gpio.h"
#include "hooks.h"
diff --git a/common/build.mk b/common/build.mk
index 4d47a28a28..34fadaef55 100644
--- a/common/build.mk
+++ b/common/build.mk
@@ -69,8 +69,8 @@ common-$(CONFIG_DEDICATED_RECOVERY_BUTTON)+=button.o
common-$(CONFIG_DEVICE_EVENT)+=device_event.o
common-$(CONFIG_DEVICE_STATE)+=device_state.o
common-$(CONFIG_DPTF)+=dptf.o
-common-$(CONFIG_EC_EC_COMM_MASTER)+=ec_ec_comm_master.o
-common-$(CONFIG_EC_EC_COMM_SLAVE)+=ec_ec_comm_slave.o
+common-$(CONFIG_EC_EC_COMM_MASTER)+=ec_ec_comm_client.o
+common-$(CONFIG_EC_EC_COMM_SLAVE)+=ec_ec_comm_server.o
common-$(CONFIG_HOSTCMD_ESPI)+=espi.o
common-$(CONFIG_EXTPOWER_GPIO)+=extpower_gpio.o
common-$(CONFIG_EXTPOWER)+=extpower_common.o
diff --git a/common/charge_state_v2.c b/common/charge_state_v2.c
index e4c9441f13..6734b15569 100644
--- a/common/charge_state_v2.c
+++ b/common/charge_state_v2.c
@@ -14,8 +14,8 @@
#include "chipset.h"
#include "common.h"
#include "console.h"
-#include "ec_ec_comm_master.h"
-#include "ec_ec_comm_slave.h"
+#include "ec_ec_comm_client.h"
+#include "ec_ec_comm_server.h"
#include "extpower.h"
#include "gpio.h"
#include "hooks.h"
diff --git a/common/ec_ec_comm_master.c b/common/ec_ec_comm_client.c
index 5cf8eba31a..d2602470bc 100644
--- a/common/ec_ec_comm_master.c
+++ b/common/ec_ec_comm_client.c
@@ -10,7 +10,7 @@
#include "console.h"
#include "crc8.h"
#include "ec_commands.h"
-#include "ec_ec_comm_master.h"
+#include "ec_ec_comm_client.h"
#include "timer.h"
#include "uart.h"
#include "util.h"
diff --git a/common/ec_ec_comm_slave.c b/common/ec_ec_comm_server.c
index 001400da60..af00f45248 100644
--- a/common/ec_ec_comm_slave.c
+++ b/common/ec_ec_comm_server.c
@@ -11,7 +11,7 @@
#include "console.h"
#include "crc8.h"
#include "ec_commands.h"
-#include "ec_ec_comm_slave.h"
+#include "ec_ec_comm_server.h"
#include "extpower.h"
#include "hwtimer.h"
#include "hooks.h"
diff --git a/include/charge_state_v2.h b/include/charge_state_v2.h
index 1cff136ee8..518b478b3a 100644
--- a/include/charge_state_v2.h
+++ b/include/charge_state_v2.h
@@ -9,7 +9,7 @@
#include "battery_smart.h"
#include "charger.h"
#include "chipset.h"
-#include "ec_ec_comm_master.h"
+#include "ec_ec_comm_client.h"
#include "ocpc.h"
#include "timer.h"
diff --git a/include/ec_ec_comm_master.h b/include/ec_ec_comm_client.h
index ccd46a9bc2..ccd46a9bc2 100644
--- a/include/ec_ec_comm_master.h
+++ b/include/ec_ec_comm_client.h
diff --git a/include/ec_ec_comm_slave.h b/include/ec_ec_comm_server.h
index 19e1912d94..19e1912d94 100644
--- a/include/ec_ec_comm_slave.h
+++ b/include/ec_ec_comm_server.h