summaryrefslogtreecommitdiff
path: root/board/brya/board.c
diff options
context:
space:
mode:
authorCaveh Jalali <caveh@chromium.org>2021-06-24 16:19:41 -0700
committerCommit Bot <commit-bot@chromium.org>2021-06-25 22:06:00 +0000
commit8fb6fbd482f3acbe403e443b45b77e2ecddd18a0 (patch)
tree3b408c72c21ced149ae4d782efadfb0ddce4540d /board/brya/board.c
parentfeb8590958f0d510e2819b0b86603cc70fc032fe (diff)
downloadchrome-ec-8fb6fbd482f3acbe403e443b45b77e2ecddd18a0.tar.gz
brya: Include-what-you-use scrub
This updates the list of header files included by brya board files to match what is actually used. BRANCH=none BUG=b:192010784 TEST=buildall passes Change-Id: I18d143882babfd17935fbf0cf92f235842df17c3 Signed-off-by: Caveh Jalali <caveh@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2987159 Reviewed-by: Boris Mittelberg <bmbm@google.com> Commit-Queue: Boris Mittelberg <bmbm@google.com>
Diffstat (limited to 'board/brya/board.c')
-rw-r--r--board/brya/board.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/board/brya/board.c b/board/brya/board.c
index f974b992d0..1935988607 100644
--- a/board/brya/board.c
+++ b/board/brya/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_lis2dw12.h"
#include "driver/accelgyro_lsm6dso.h"
#include "driver/als_tcs3400.h"
@@ -18,9 +21,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. */