diff options
Diffstat (limited to 'src/soc/intel/jasperlake')
-rw-r--r-- | src/soc/intel/jasperlake/bootblock/pch.c | 2 | ||||
-rw-r--r-- | src/soc/intel/jasperlake/finalize.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/jasperlake/bootblock/pch.c b/src/soc/intel/jasperlake/bootblock/pch.c index df29cd66f0..a3c338e127 100644 --- a/src/soc/intel/jasperlake/bootblock/pch.c +++ b/src/soc/intel/jasperlake/bootblock/pch.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <console/console.h> -#include <console/post_codes.h> +#include <commonlib/console/post_codes.h> #include <device/mmio.h> #include <device/device.h> #include <device/pci_ops.h> diff --git a/src/soc/intel/jasperlake/finalize.c b/src/soc/intel/jasperlake/finalize.c index 8219f0c1d5..07bfee366b 100644 --- a/src/soc/intel/jasperlake/finalize.c +++ b/src/soc/intel/jasperlake/finalize.c @@ -1,17 +1,16 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <device/mmio.h> #include <bootstate.h> +#include <commonlib/console/post_codes.h> #include <console/console.h> -#include <console/post_codes.h> #include <cpu/x86/smm.h> +#include <device/mmio.h> #include <device/pci.h> #include <intelblocks/lpc_lib.h> #include <intelblocks/pcr.h> #include <intelblocks/pmclib.h> #include <intelblocks/tco.h> #include <intelblocks/thermal.h> -#include <spi-generic.h> #include <soc/p2sb.h> #include <soc/pci_devs.h> #include <soc/pcr_ids.h> @@ -19,6 +18,7 @@ #include <soc/smbus.h> #include <soc/soc_chip.h> #include <soc/systemagent.h> +#include <spi-generic.h> #define CAMERA1_CLK 0x8000 /* Camera 1 Clock */ #define CAMERA2_CLK 0x8080 /* Camera 2 Clock */ |