soc/intel: Remove blank lines before '}' and after '{'
[coreboot2.git] / src / soc / intel / xeon_sp / lpc.c
blob7b4656458851b6320a03a377a9c71fd8153072c5
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <console/console.h>
4 #include <intelblocks/lpc_lib.h>
5 #include <soc/iomap.h>
6 #include <soc/pcr_ids.h>
8 #include <chip.h>
10 void soc_get_gen_io_dec_range(uint32_t gen_io_dec[LPC_NUM_GENERIC_IO_RANGES])
12 const config_t *config = config_of_soc();
14 gen_io_dec[0] = config->gen1_dec;
15 gen_io_dec[1] = config->gen2_dec;
16 gen_io_dec[2] = config->gen3_dec;
17 gen_io_dec[3] = config->gen4_dec;
20 void lpc_soc_init(struct device *dev)
22 printk(BIOS_SPEW, "pch: lpc_init\n");
24 /* FSP configures IOAPIC and PCHInterrupt Config */
25 /* Should read back the ID to fill ACPI IOAPIC accordingly. */
28 void pch_lpc_soc_fill_io_resources(struct device *dev)