summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew McRae <amcrae@google.com>2022-01-28 16:23:18 +1100
committerCommit Bot <commit-bot@chromium.org>2022-01-28 23:54:46 +0000
commitd680d3972ab9c3060165ef8a39445ff2e132efd1 (patch)
tree274609c7dc705885ca1691ebef271c887c13828c
parenta7278f84de212def6e624e722cd07329b62d3031 (diff)
downloadchrome-ec-d680d3972ab9c3060165ef8a39445ff2e132efd1.tar.gz
drawcia_riscv: Remove EC_CROS_GPIO_INTERRUPTS
Remove the empty EC_CROS_GPIO_INTERRUPTS define BUG=b:214608987 TEST=zmake testall BRANCH=none Signed-off-by: Andrew McRae <amcrae@google.com> Change-Id: I024c93c02deb5c54e8c97d9dd405d628d7162bbe Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3422860 Reviewed-by: Abe Levkoy <alevkoy@chromium.org>
-rw-r--r--zephyr/projects/drawcia_riscv/include/gpio_map.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/zephyr/projects/drawcia_riscv/include/gpio_map.h b/zephyr/projects/drawcia_riscv/include/gpio_map.h
index 51f270bd4a..81d2d26b40 100644
--- a/zephyr/projects/drawcia_riscv/include/gpio_map.h
+++ b/zephyr/projects/drawcia_riscv/include/gpio_map.h
@@ -6,27 +6,7 @@
#ifndef __ZEPHYR_GPIO_MAP_H
#define __ZEPHYR_GPIO_MAP_H
-#include <devicetree.h>
-#include <gpio_signal.h>
-
#define GPIO_AC_PRESENT GPIO_UNIMPLEMENTED
#define GPIO_ENABLE_BACKLIGHT GPIO_UNIMPLEMENTED
-/*
- * Set EC_CROS_GPIO_INTERRUPTS to a space-separated list of GPIO_INT items.
- *
- * Each GPIO_INT requires three parameters:
- * gpio_signal - The enum gpio_signal for the interrupt gpio
- * interrupt_flags - The interrupt-related flags (e.g. GPIO_INT_EDGE_BOTH)
- * handler - The platform/ec interrupt handler.
- *
- * Ensure that this files includes all necessary headers to declare all
- * referenced handler functions.
- *
- * For example, one could use the follow definition:
- * #define EC_CROS_GPIO_INTERRUPTS \
- * GPIO_INT(NAMED_GPIO(h1_ec_pwr_btn_odl), GPIO_INT_EDGE_BOTH, button_print)
- */
-#define EC_CROS_GPIO_INTERRUPTS
-
#endif /* __ZEPHYR_GPIO_MAP_H */