summaryrefslogtreecommitdiff
path: root/baseboard/hatch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-12-30 16:52:10 -0700
committerCommit Bot <commit-bot@chromium.org>2021-01-07 06:01:56 +0000
commit4386826003d238fea76eb449977fc7d50a51306d (patch)
treea49ebe973f477d5313e683a1a43565fa99fba725 /baseboard/hatch
parentadab8866aa7e895ea95d335120c9e6253836a179 (diff)
downloadchrome-ec-4386826003d238fea76eb449977fc7d50a51306d.tar.gz
Move tcpic.h header into include/driver
This header cannot currently be accessed by Zephyr since it is in a driver directory, not an include directory. This header has quite a bit of public stuff in it, so it seems reasonable to consider everything public. Move the header file and update all users. BUG=b:175434113 BRANCH=none TEST=make buildall -j30 build volteer on zephyr Signed-off-by: Simon Glass <sjg@chromium.org> Change-Id: Ibba37f47a06783fafb5095f853f2a68d92b6df87 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2607745
Diffstat (limited to 'baseboard/hatch')
-rw-r--r--baseboard/hatch/baseboard.c2
-rw-r--r--baseboard/hatch/usb_pd_policy.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/baseboard/hatch/baseboard.c b/baseboard/hatch/baseboard.c
index 97fd870242..d0cf3f00b0 100644
--- a/baseboard/hatch/baseboard.c
+++ b/baseboard/hatch/baseboard.c
@@ -26,7 +26,7 @@
#include "power.h"
#include "stdbool.h"
#include "system.h"
-#include "tcpci.h"
+#include "tcpm/tcpci.h"
#include "timer.h"
#include "usbc_ppc.h"
#include "util.h"
diff --git a/baseboard/hatch/usb_pd_policy.c b/baseboard/hatch/usb_pd_policy.c
index d266307ad0..a66bfefe87 100644
--- a/baseboard/hatch/usb_pd_policy.c
+++ b/baseboard/hatch/usb_pd_policy.c
@@ -12,7 +12,7 @@
#include "ec_commands.h"
#include "gpio.h"
#include "system.h"
-#include "tcpci.h"
+#include "tcpm/tcpci.h"
#include "tcpm/tcpm.h"
#include "usb_mux.h"
#include "usb_pd.h"