summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zephyr/program/geralt/src/backlight.c2
-rw-r--r--zephyr/program/geralt/src/dp_alt_mode.c3
-rw-r--r--zephyr/program/geralt/src/hooks.c2
-rw-r--r--zephyr/program/geralt/src/ppc.c2
-rw-r--r--zephyr/program/geralt/src/usbc_config.c6
5 files changed, 5 insertions, 10 deletions
diff --git a/zephyr/program/geralt/src/backlight.c b/zephyr/program/geralt/src/backlight.c
index 1a8fc9461e..8234191d22 100644
--- a/zephyr/program/geralt/src/backlight.c
+++ b/zephyr/program/geralt/src/backlight.c
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-#include "gpio.h"
+#include "gpio_signal.h"
#include <zephyr/drivers/gpio.h>
#include <zephyr/init.h>
diff --git a/zephyr/program/geralt/src/dp_alt_mode.c b/zephyr/program/geralt/src/dp_alt_mode.c
index d0cfdf6a74..afafa68be0 100644
--- a/zephyr/program/geralt/src/dp_alt_mode.c
+++ b/zephyr/program/geralt/src/dp_alt_mode.c
@@ -3,16 +3,13 @@
* found in the LICENSE file.
*/
-#include "atomic.h"
#include "chipset.h"
#include "console.h"
#include "hooks.h"
#include "timer.h"
#include "typec_control.h"
-#include "usb_dp_alt_mode.h"
#include "usb_mux.h"
#include "usb_pd.h"
-#include "usbc_ppc.h"
#define CPRINTS(format, args...) cprints(CC_USBPD, format, ##args)
#define CPRINTF(format, args...) cprintf(CC_USBPD, format, ##args)
diff --git a/zephyr/program/geralt/src/hooks.c b/zephyr/program/geralt/src/hooks.c
index 64d3026093..628ecdd0f8 100644
--- a/zephyr/program/geralt/src/hooks.c
+++ b/zephyr/program/geralt/src/hooks.c
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-#include "gpio.h"
+#include "gpio_signal.h"
#include "hooks.h"
#include <zephyr/drivers/gpio.h>
diff --git a/zephyr/program/geralt/src/ppc.c b/zephyr/program/geralt/src/ppc.c
index 985c70af9a..e69aa2171c 100644
--- a/zephyr/program/geralt/src/ppc.c
+++ b/zephyr/program/geralt/src/ppc.c
@@ -4,7 +4,7 @@
*/
#include "gpio/gpio_int.h"
-#include "usbc/ppc.h"
+#include "usbc_ppc.h"
#include <zephyr/init.h>
diff --git a/zephyr/program/geralt/src/usbc_config.c b/zephyr/program/geralt/src/usbc_config.c
index 882dfacd6f..7c49f58237 100644
--- a/zephyr/program/geralt/src/usbc_config.c
+++ b/zephyr/program/geralt/src/usbc_config.c
@@ -5,15 +5,13 @@
/* Geralt baseboard-specific USB-C configuration */
-#include "adc.h"
+#include "charge_manager.h"
#include "charge_state_v2.h"
-#include "charger.h"
#include "console.h"
#include "driver/tcpm/it83xx_pd.h"
-#include "hooks.h"
-#include "usb_charge.h"
#include "usb_pd.h"
#include "usbc_ppc.h"
+#include "zephyr_adc.h"
#include <ap_power/ap_power.h>