diff options
author | Subrata Banik <subratabanik@google.com> | 2024-07-25 01:44:42 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-07-26 23:03:48 +0000 |
commit | 66b9c989ae101d0031682e167e9bf5cfe27e949b (patch) | |
tree | cacfdfb63766ceb65b67d7817d4e31ea0f007889 /src/soc | |
parent | 5f445f21e0704d600e87616b230c5eaf460de6fb (diff) |
soc/intel/meteorlake: Remove unnecessary #if ENV_RAMSTAGE
TEST=Able to build google/rex.
Change-Id: I0de87a2ff5ecb37f00ec745ad930e83f6356a3fe
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83637
Reviewed-by: Dinesh Gehlot <digehlot@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/meteorlake/espi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/soc/intel/meteorlake/espi.c b/src/soc/intel/meteorlake/espi.c index d29a117aba..a3952a31aa 100644 --- a/src/soc/intel/meteorlake/espi.c +++ b/src/soc/intel/meteorlake/espi.c @@ -24,7 +24,6 @@ void soc_get_gen_io_dec_range(uint32_t gen_io_dec[LPC_NUM_GENERIC_IO_RANGES]) gen_io_dec[3] = config->gen4_dec; } -#if ENV_RAMSTAGE void lpc_soc_init(struct device *dev) { /* Legacy initialization */ @@ -46,4 +45,3 @@ void lpc_soc_init(struct device *dev) setup_i8259(); i8259_configure_irq_trigger(9, 1); } -#endif |