diff options
author | Furquan Shaikh <furquan@google.com> | 2020-04-30 23:00:41 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-05-02 20:40:55 +0000 |
commit | 00367b2243064268062cd094f43e1271fca09c5e (patch) | |
tree | f528e73e61beb2e661808f708b47d582d19436fe | |
parent | 6099aa308b4f7984728b6be2f452b474c642ed6b (diff) |
acpi: Move ACPI table support out of arch/x86 (4/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 4/5 which gets rid of the placeholder
header files that were added to temporarily include acpi/ header files
from arch/header files.
BUG=b:155428745
Change-Id: If6e8580c3c6433f9239e06a1dc7ba661b3f597e5
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40939
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
-rw-r--r-- | src/arch/x86/include/arch/acpi.h | 4 | ||||
-rw-r--r-- | src/arch/x86/include/arch/acpi_device.h | 4 | ||||
-rw-r--r-- | src/arch/x86/include/arch/acpi_ivrs.h | 4 | ||||
-rw-r--r-- | src/arch/x86/include/arch/acpi_pld.h | 4 | ||||
-rw-r--r-- | src/arch/x86/include/arch/acpigen.h | 4 | ||||
-rw-r--r-- | src/arch/x86/include/arch/acpigen_dsm.h | 4 | ||||
-rw-r--r-- | src/arch/x86/include/arch/acpigen_ps2_keybd.h | 7 |
7 files changed, 0 insertions, 31 deletions
diff --git a/src/arch/x86/include/arch/acpi.h b/src/arch/x86/include/arch/acpi.h deleted file mode 100644 index 35cf6c6b06..0000000000 --- a/src/arch/x86/include/arch/acpi.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ - -#include <acpi/acpi.h> diff --git a/src/arch/x86/include/arch/acpi_device.h b/src/arch/x86/include/arch/acpi_device.h deleted file mode 100644 index 5c3199e7b7..0000000000 --- a/src/arch/x86/include/arch/acpi_device.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ - -#include <acpi/acpi_device.h> diff --git a/src/arch/x86/include/arch/acpi_ivrs.h b/src/arch/x86/include/arch/acpi_ivrs.h deleted file mode 100644 index 032d253f08..0000000000 --- a/src/arch/x86/include/arch/acpi_ivrs.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ - -#include <acpi/acpi_ivrs.h> diff --git a/src/arch/x86/include/arch/acpi_pld.h b/src/arch/x86/include/arch/acpi_pld.h deleted file mode 100644 index 5076e39a71..0000000000 --- a/src/arch/x86/include/arch/acpi_pld.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ - -#include <acpi/acpi_pld.h> diff --git a/src/arch/x86/include/arch/acpigen.h b/src/arch/x86/include/arch/acpigen.h deleted file mode 100644 index cdac49fc1b..0000000000 --- a/src/arch/x86/include/arch/acpigen.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ - -#include <acpi/acpigen.h> diff --git a/src/arch/x86/include/arch/acpigen_dsm.h b/src/arch/x86/include/arch/acpigen_dsm.h deleted file mode 100644 index 0804ab975a..0000000000 --- a/src/arch/x86/include/arch/acpigen_dsm.h +++ /dev/null @@ -1,4 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* This file is part of the coreboot project. */ - -#include <acpi/acpigen_dsm.h> diff --git a/src/arch/x86/include/arch/acpigen_ps2_keybd.h b/src/arch/x86/include/arch/acpigen_ps2_keybd.h deleted file mode 100644 index 894524a6ac..0000000000 --- a/src/arch/x86/include/arch/acpigen_ps2_keybd.h +++ /dev/null @@ -1,7 +0,0 @@ -/* - * This file is part of the coreboot project. - * - * SPDX-License-Identifier: GPL-2.0-or-later - */ - -#include <acpi/acpigen_ps2_keybd.h> |