diff options
author | Dinesh Gehlot <digehlot@google.com> | 2023-01-17 05:57:56 +0000 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-01-18 05:18:05 +0000 |
commit | 3e866812e96d88872af31f2cbb590c6870262205 (patch) | |
tree | 9093222a4b84cbd6952e30bec74d334cb9985e01 /src/soc/intel/tigerlake/fsp_params.c | |
parent | 8a2c904616722f51f5d3a500ba41b7e21b4735e2 (diff) |
soc/intel/tigerlake: 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 includes soc/gpio.h which includes
intelblocks/gpio.h which includes soc/gpio_defs.h. This patch also fixes
alphabetic ordering of included headers.
BUG=b:261778357
TEST=Able to build and boot.
Signed-off-by: Dinesh Gehlot <digehlot@google.com>
Change-Id: I12497d46e58aae41ec8dcb5d567267579dc12fc6
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72041
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/tigerlake/fsp_params.c')
-rw-r--r-- | src/soc/intel/tigerlake/fsp_params.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/tigerlake/fsp_params.c b/src/soc/intel/tigerlake/fsp_params.c index f67e205652..b823f50301 100644 --- a/src/soc/intel/tigerlake/fsp_params.c +++ b/src/soc/intel/tigerlake/fsp_params.c @@ -2,15 +2,15 @@ #include <assert.h> #include <console/console.h> -#include <device/device.h> #include <cpu/intel/cpu_ids.h> +#include <device/device.h> #include <device/pci_ops.h> #include <device/pci.h> #include <device/pci_ids.h> #include <fsp/api.h> #include <fsp/ppi/mp_service_ppi.h> #include <fsp/util.h> -#include <option.h> +#include <gpio.h> #include <intelblocks/cse.h> #include <intelblocks/irq.h> #include <intelblocks/lpss.h> @@ -18,8 +18,8 @@ #include <intelblocks/tcss.h> #include <intelblocks/xdci.h> #include <intelpch/lockdown.h> +#include <option.h> #include <security/vboot/vboot_common.h> -#include <soc/gpio.h> #include <soc/intel/common/vbt.h> #include <soc/lpm.h> #include <soc/pci_devs.h> |