acpi: Move ACPI table support out of arch/x86 (3/5)
This change moves all ACPI table support in coreboot currently living under arch/x86 into common code to make it architecture independent. ACPI table generation is not really tied to any architecture and hence it makes sense to move this to its own directory. In order to make it easier to review, this change is being split into multiple CLs. This is change 3/5 which basically is generated by running the following command: $ git grep -iIl "arch/acpi" | xargs sed -i 's/arch\/acpi/acpi\/acpi/g' BUG=b:155428745 Change-Id: I16b1c45d954d6440fb9db1d3710063a47b582eae Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40938 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
#include <northbridge/amd/agesa/agesa_helper.h>
|
||||
#include <northbridge/amd/agesa/BiosCallOuts.h>
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <console/console.h>
|
||||
#include <string.h>
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <amdblocks/biosram.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <arch/romstage.h>
|
||||
#include <cbmem.h>
|
||||
|
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <bootstate.h>
|
||||
#include <cbfs.h>
|
||||
#include <cbmem.h>
|
||||
|
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <console/console.h>
|
||||
#include <security/tpm/tis.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <device/device.h>
|
||||
#include <drivers/intel/ptt/ptt.h>
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#if CONFIG(HAVE_ACPI_RESUME)
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#endif
|
||||
#include <bootstate.h>
|
||||
#include <cbmem.h>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
/*
|
||||
* Bayhub BG720 PCI to eMMC bridge
|
||||
|
@@ -6,7 +6,7 @@
|
||||
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
#define MAX_GENERIC_PROPERTY_LIST 10
|
||||
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#ifndef __DRIVERS_GENERIC_GPIO_KEYS_H__
|
||||
#define __DRIVERS_GENERIC_GPIO_KEYS_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/* Linux input type */
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
#include <string.h>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#ifndef __DRIVERS_GENERIC_GPIO_REGULATOR_H__
|
||||
#define __DRIVERS_GENERIC_GPIO_REGULATOR_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
struct drivers_generic_gpio_regulator_config {
|
||||
const char *name;
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
#include <string.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
struct drivers_generic_max98357a_config {
|
||||
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#ifndef __DRIVERS_GFX_GENERIC_CHIP_H__
|
||||
#define __DRIVERS_GFX_GENERIC_CHIP_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
/* Config for electronic privacy screen */
|
||||
struct drivers_gfx_generic_privacy_screen_config {
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
/*
|
||||
* Dialog Semiconductor DA7219 Audio Codec devicetree bindings
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <device/mmio.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#ifndef __I2C_GENERIC_CHIP_H__
|
||||
#define __I2C_GENERIC_CHIP_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <device/i2c_simple.h>
|
||||
|
||||
#define MAX_GENERIC_PROPERTY_LIST 10
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpigen_dsm.h>
|
||||
#include <acpi/acpigen_dsm.h>
|
||||
#include <device/device.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
#define NAU8825_MAX_BUTTONS 8
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -5,7 +5,7 @@
|
||||
* Realtek RT5663 audio codec devicetree bindings
|
||||
*/
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct drivers_i2c_rt5663_config {
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#ifndef __DRIVERS_I2C_SX9310_CHIP_H__
|
||||
#define __DRIVERS_I2C_SX9310_CHIP_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <device/i2c_simple.h>
|
||||
|
||||
#define REGISTER(NAME) uint8_t NAME
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <device/i2c_simple.h>
|
||||
|
||||
struct drivers_i2c_tpm_config {
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <cbmem.h>
|
||||
#include <cf9_reset.h>
|
||||
#include <commonlib/helpers.h>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <bootmode.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <console/console.h>
|
||||
#include <cpu/x86/smm.h>
|
||||
#include <fsp/ramstage.h>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <stddef.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <assert.h>
|
||||
#include <console/console.h>
|
||||
#include <cbmem.h>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <string.h>
|
||||
#include "i915.h"
|
||||
|
||||
|
@@ -30,7 +30,7 @@
|
||||
#include <device/device.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <console/console.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <device/pci.h>
|
||||
#include <ec/google/chromeec/ec.h>
|
||||
#include <cpu/x86/tsc.h>
|
||||
|
@@ -12,7 +12,7 @@
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <types.h>
|
||||
#include <string.h>
|
||||
#include <cbfs.h>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/pci.h>
|
||||
#include <device/pci_ids.h>
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/i2c_simple.h>
|
||||
#include <device/device.h>
|
||||
|
@@ -13,8 +13,8 @@
|
||||
#include <device/device.h>
|
||||
#include <device/pnp.h>
|
||||
#if CONFIG(HAVE_ACPI_TABLES)
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#endif
|
||||
#if CONFIG(GENERATE_SMBIOS_TABLES)
|
||||
#include <smbios.h>
|
||||
|
@@ -14,8 +14,8 @@
|
||||
|
||||
#include <types.h>
|
||||
#include <console/console.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pnp.h>
|
||||
#include <string.h>
|
||||
|
@@ -5,7 +5,7 @@
|
||||
#define __DRIVERS_R8168_CHIP_H__
|
||||
|
||||
#include <stdint.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
struct drivers_net_config {
|
||||
uint16_t customized_leds;
|
||||
|
@@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
#include <cbfs.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <string.h>
|
||||
#include <arch/io.h>
|
||||
#include <console/console.h>
|
||||
|
@@ -7,7 +7,7 @@
|
||||
#include <arch/io.h>
|
||||
#include <delay.h>
|
||||
#include <types.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
|
||||
#define KBD_DATA 0x60
|
||||
#define KBD_COMMAND 0x64
|
||||
|
@@ -1,7 +1,7 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <arch/io.h>
|
||||
#include <bcd.h>
|
||||
#include <fallback.h>
|
||||
|
@@ -15,9 +15,9 @@
|
||||
#include <string.h>
|
||||
#include <delay.h>
|
||||
#include <device/mmio.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <device/device.h>
|
||||
#include <console/console.h>
|
||||
#include <security/tpm/tis.h>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
#ifndef __SPI_ACPI_CHIP_H__
|
||||
#define __SPI_ACPI_CHIP_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
|
||||
struct drivers_spi_acpi_config {
|
||||
const char *hid; /* ACPI _HID (required) */
|
||||
|
@@ -7,7 +7,7 @@
|
||||
#include <security/tpm/tspi.h>
|
||||
|
||||
#if CONFIG(HAVE_ACPI_RESUME)
|
||||
#include <arch/acpi.h>
|
||||
#include <acpi/acpi.h>
|
||||
#endif
|
||||
|
||||
static void init_tpm_dev(void *unused)
|
||||
|
@@ -4,9 +4,9 @@
|
||||
#ifndef __USB_ACPI_CHIP_H__
|
||||
#define __USB_ACPI_CHIP_H__
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpi.h>
|
||||
#include <arch/acpi_pld.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpi.h>
|
||||
#include <acpi/acpi_pld.h>
|
||||
|
||||
struct drivers_usb_acpi_config {
|
||||
const char *desc;
|
||||
|
@@ -1,9 +1,9 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/* This file is part of the coreboot project. */
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpi_pld.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpi_pld.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/path.h>
|
||||
|
@@ -12,8 +12,8 @@
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <arch/acpi_device.h>
|
||||
#include <arch/acpigen.h>
|
||||
#include <acpi/acpi_device.h>
|
||||
#include <acpi/acpigen.h>
|
||||
#include <console/console.h>
|
||||
#include <device/device.h>
|
||||
#include <device/pci_def.h>
|
||||
|
Reference in New Issue
Block a user