summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Chao <scott_chao@wistron.corp-partner.google.com>2023-02-10 11:29:12 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-02-14 00:16:06 +0000
commit8ca233c5c35e956cb9a9a1ea47de81a427582a27 (patch)
tree55bc67ba2a7964006ba2be90c38772b7aa073a8e
parent13b898fbf00ed8aced0d9758c323a3cd58a8c6a0 (diff)
downloadchrome-ec-8ca233c5c35e956cb9a9a1ea47de81a427582a27.tar.gz
CPS8100: create header file
This CL created the header file and also add the driver declaration. BUG=b:268581418 BRANCH=none TEST=make buildall Change-Id: I08df700f4aff4c5cbe5ccd1345652263feab36f3 Signed-off-by: Scott Chao <scott_chao@wistron.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4238095 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
-rw-r--r--driver/wpc/cps8100.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/driver/wpc/cps8100.h b/driver/wpc/cps8100.h
new file mode 100644
index 0000000000..0fb6fe0c4e
--- /dev/null
+++ b/driver/wpc/cps8100.h
@@ -0,0 +1,15 @@
+/* Copyright 2023 The ChromiumOS Authors
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* cps8100 Qi wireless power transmitter module for Chrome EC */
+
+#ifndef __CROS_EC_WPC_CPS8100_H
+#define __CROS_EC_WPC_CPS8100_H
+
+#include "peripheral_charger.h"
+
+extern struct pchg_drv cps8100_drv;
+
+#endif /* __CROS_EC_WPC_CPS8100_H */