summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2022-02-14 10:29:52 -0700
committerCommit Bot <commit-bot@chromium.org>2022-02-25 01:38:01 +0000
commit3636565a4e1f6a3b59bf867ae0944f7d4c416609 (patch)
tree9ca97265d993c3644cd07af060a66240cfde501d
parent2f79338fee0c1ecf3964bd82f39cb2c319083f17 (diff)
downloadchrome-ec-3636565a4e1f6a3b59bf867ae0944f7d4c416609.tar.gz
zinger: create stub gpio.inc file
Zinger is the only platform without a gpio.inc file. BUG=none BRANCH=none TEST=compare_build.sh Signed-off-by: Keith Short <keithshort@chromium.org> Change-Id: I720ace09cdf7040ba0d7b168996475c46856db60 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3489090 Reviewed-by: Denis Brockus <dbrockus@chromium.org>
-rw-r--r--board/zinger/board.h1
-rw-r--r--board/zinger/gpio.inc8
2 files changed, 9 insertions, 0 deletions
diff --git a/board/zinger/board.h b/board/zinger/board.h
index 7919c083d4..0be755eb5c 100644
--- a/board/zinger/board.h
+++ b/board/zinger/board.h
@@ -90,6 +90,7 @@
#ifndef __ASSEMBLER__
#include "common.h"
+#include "gpio_signal.h"
/* No GPIO abstraction layer */
diff --git a/board/zinger/gpio.inc b/board/zinger/gpio.inc
new file mode 100644
index 0000000000..6b96e08645
--- /dev/null
+++ b/board/zinger/gpio.inc
@@ -0,0 +1,8 @@
+/* -*- mode:c -*-
+ *
+ * Copyright 2022 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.
+ */
+
+/* Stub file only */ \ No newline at end of file