summaryrefslogtreecommitdiff
path: root/board/gimble/board.c
diff options
context:
space:
mode:
authorScott Chao <scott_chao@wistron.corp-partner.google.com>2021-07-06 14:27:18 +0800
committerCommit Bot <commit-bot@chromium.org>2021-07-08 00:38:06 +0000
commit25ea852e1ebcc10166b730037c137a556b69c16b (patch)
treee5a9426dee513bfe2a07a4dd5dd7cc49c55a15ef /board/gimble/board.c
parent4dfd874491cd748139dfac1259e4009adfca0096 (diff)
downloadchrome-ec-25ea852e1ebcc10166b730037c137a556b69c16b.tar.gz
gimble: Include-what-you-use scrub
Copy CL:2987159 to gimble. This updates the list of header files included by brya board files to match what is actually used. BUG=none BRANCH=none TEST=make buildall Signed-off-by: Scott Chao <scott_chao@wistron.corp-partner.google.com> Change-Id: I3fcc0c0742f4adbeb063dd2db137b11ed0a8e8da Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3007878 Reviewed-by: Boris Mittelberg <bmbm@google.com>
Diffstat (limited to 'board/gimble/board.c')
-rw-r--r--board/gimble/board.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/board/gimble/board.c b/board/gimble/board.c
index ad70d0f2bf..7f940d3736 100644
--- a/board/gimble/board.c
+++ b/board/gimble/board.c
@@ -3,13 +3,16 @@
* found in the LICENSE file.
*/
-#include "common.h"
-
#include "battery.h"
#include "button.h"
#include "charge_ramp.h"
#include "charger.h"
+#include "common.h"
+#include "compile_time_macros.h"
#include "console.h"
+#include "gpio.h"
+#include "gpio_signal.h"
+#include "hooks.h"
#include "driver/accel_bma2x2_public.h"
#include "driver/accelgyro_bmi160.h"
#include "fw_config.h"
@@ -17,9 +20,11 @@
#include "lid_switch.h"
#include "power_button.h"
#include "power.h"
+#include "registers.h"
#include "switch.h"
#include "tablet_mode.h"
#include "throttle_ap.h"
+#include "usbc_config.h"
#include "gpio_list.h" /* Must come after other header files. */