From 2d746e5733f13e3c4e693b2656749c678b070a3f Mon Sep 17 00:00:00 2001 From: rusefillc Date: Wed, 9 Feb 2022 08:00:30 -0500 Subject: [PATCH] L9779WD driver L9779 #3768 --- firmware/hw_layer/smart_gpio.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/firmware/hw_layer/smart_gpio.h b/firmware/hw_layer/smart_gpio.h index 286946d933..c21c91f111 100644 --- a/firmware/hw_layer/smart_gpio.h +++ b/firmware/hw_layer/smart_gpio.h @@ -13,12 +13,19 @@ #include "drivers/gpio/mc33972.h" #include "drivers/gpio/tle8888.h" #include "drivers/gpio/drv8860.h" + # we seem OK without L9779 here do we need those includes at all? #endif /* EFI_PROD_CODE */ #if EFI_UNIT_TEST #define BOARD_EXT_GPIOCHIPS 3 #else - #define BOARD_EXT_GPIOCHIPS (BOARD_TLE6240_COUNT + BOARD_MC33972_COUNT + BOARD_TLE8888_COUNT + BOARD_DRV8860_COUNT + BOARD_MC33810_COUNT + BOARD_L9779_COUNT) + #define BOARD_EXT_GPIOCHIPS ( \ + BOARD_TLE6240_COUNT + \ + BOARD_MC33972_COUNT + \ + BOARD_TLE8888_COUNT + \ + BOARD_DRV8860_COUNT + \ + BOARD_MC33810_COUNT + \ + BOARD_L9779_COUNT) #endif void initSmartGpio(void);