diff options
author | Dinesh Gehlot <digehlot@google.com> | 2023-01-03 05:26:19 +0000 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-01-10 11:32:18 +0000 |
commit | 166c75c7785965e7c7013b20a420720635cee656 (patch) | |
tree | 255a7c42eaa633daee3bee114426a006594b868d /src/soc/intel/meteorlake/finalize.c | |
parent | 268a18d58c629fd39bf8e77935f49f94352cb9e3 (diff) |
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/finalize.c')
-rw-r--r-- | src/soc/intel/meteorlake/finalize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/finalize.c b/src/soc/intel/meteorlake/finalize.c index c33bf5a662..6bd304cea6 100644 --- a/src/soc/intel/meteorlake/finalize.c +++ b/src/soc/intel/meteorlake/finalize.c @@ -6,8 +6,8 @@ #include <cpu/x86/smm.h> #include <delay.h> #include <device/pci.h> +#include <gpio.h> #include <intelblocks/cse.h> -#include <intelblocks/gpio.h> #include <intelblocks/lpc_lib.h> #include <intelblocks/pcr.h> #include <intelblocks/pmclib.h> |