summaryrefslogtreecommitdiff
path: root/src/mainboard/google/guybrush/ec.c
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2022-12-06 21:10:53 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-12-10 03:50:23 +0000
commitfa0bf5c2a4ad5091deb9ef1ad2c7625c9a7eb7ee (patch)
treef3cafb91b699da4131bf5a33f1c008dde66976d1 /src/mainboard/google/guybrush/ec.c
parent0a7a2694f9ddeccd8ff24b5ea332190f22f444ab (diff)
mb/google/guybrush: use gpio.h include
Replace the amdblocks/gpio.h and soc/gpio.h includes with the common gpio.h which will include soc/gpio.h which will include amdblocks/gpio.h in the AMD SoC case. Since baseboard/ec.h and indirectly baseboard/gpio.h files will get included in the DSDT, the soc/gpio.h includes in those aren't replaced with a gpio.h include for now. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ifa82c10d10e4438b0437b78ddd95b5e823805571 Reviewed-on: https://review.coreboot.org/c/coreboot/+/70435 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/guybrush/ec.c')
-rw-r--r--src/mainboard/google/guybrush/ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/guybrush/ec.c b/src/mainboard/google/guybrush/ec.c
index f62ca2027c..fdfc6e30fc 100644
--- a/src/mainboard/google/guybrush/ec.c
+++ b/src/mainboard/google/guybrush/ec.c
@@ -1,9 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <acpi/acpi.h>
-#include <amdblocks/gpio.h>
#include <amdblocks/smi.h>
#include <ec/google/chromeec/ec.h>
+#include <gpio.h>
#include <soc/smi.h>
#include <variant/ec.h>