summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/meteorlake/pmutil.c
diff options
context:
space:
mode:
authorDinesh Gehlot <digehlot@google.com>2023-01-03 05:26:19 +0000
committerElyes Haouas <ehaouas@noos.fr>2023-01-10 11:32:18 +0000
commit166c75c7785965e7c7013b20a420720635cee656 (patch)
tree255a7c42eaa633daee3bee114426a006594b868d /src/soc/intel/meteorlake/pmutil.c
parent268a18d58c629fd39bf8e77935f49f94352cb9e3 (diff)
downloadcoreboot-166c75c7785965e7c7013b20a420720635cee656.tar.gz
coreboot-166c75c7785965e7c7013b20a420720635cee656.tar.bz2
coreboot-166c75c7785965e7c7013b20a420720635cee656.zip
soc/intel/meteorlake: Use common gpio.h include
Replace the intelblocks/gpio.h, soc/gpio.h and soc/gpio_defs.h includes with the common gpio.h which will include soc/gpio.h which will include intelblocks/gpio.h which will include soc/gpio_defs.h BUG=b:261778357 TEST=Able to build and boot Google/rex. Signed-off-by: Dinesh Gehlot <digehlot@google.com> Change-Id: I58e428cde5e13f4f0dfe528d798c0613b7f8a94a Reviewed-on: https://review.coreboot.org/c/coreboot/+/71630 Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/intel/meteorlake/pmutil.c')
-rw-r--r--src/soc/intel/meteorlake/pmutil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/meteorlake/pmutil.c b/src/soc/intel/meteorlake/pmutil.c
index 6f35428a4d72..fc627c3f4755 100644
--- a/src/soc/intel/meteorlake/pmutil.c
+++ b/src/soc/intel/meteorlake/pmutil.c
@@ -8,18 +8,18 @@
#define __SIMPLE_DEVICE__
#include <acpi/acpi_pm.h>
+#include <console/console.h>
#include <device/mmio.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_def.h>
-#include <console/console.h>
+#include <gpio.h>
#include <intelblocks/pmclib.h>
#include <intelblocks/rtc.h>
#include <intelblocks/tco.h>
#include <security/vboot/vbnv.h>
#include <soc/espi.h>
#include <soc/gpe.h>
-#include <soc/gpio.h>
#include <soc/iomap.h>
#include <soc/pci_devs.h>
#include <soc/pm.h>