diff options
author | Simon Glass <sjg@chromium.org> | 2023-09-01 11:27:09 -0600 |
---|---|---|
committer | Bin Meng <bmeng@tinylab.org> | 2023-09-22 06:03:46 +0800 |
commit | 2e977b2ce8f63aee6a5197eeb2330da093af44a1 (patch) | |
tree | 6dc346bd7ccfa91f0cc0723bfc0040ff90c9b5b0 /arch/x86/include | |
parent | 0879de0e8b110da1d35db45f086c60cf777f2732 (diff) | |
download | u-boot-2e977b2ce8f63aee6a5197eeb2330da093af44a1.tar.gz u-boot-2e977b2ce8f63aee6a5197eeb2330da093af44a1.tar.bz2 u-boot-2e977b2ce8f63aee6a5197eeb2330da093af44a1.zip |
Reland "x86: Move FACP table into separate functions""
Each board has its own way of creating this table. Rather than calling the
acpi_create_fadt() function for each one from a common acpi_write_fadt()
function, just move the writer into the board-specific code.
Co-developed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/acpi_table.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/include/asm/acpi_table.h b/arch/x86/include/asm/acpi_table.h index 72e1873d15..226753b65d 100644 --- a/arch/x86/include/asm/acpi_table.h +++ b/arch/x86/include/asm/acpi_table.h @@ -24,8 +24,6 @@ struct acpi_table_header; /* These can be used by the target port */ -void acpi_create_fadt(struct acpi_fadt *fadt, struct acpi_facs *facs, - void *dsdt); int acpi_create_madt_lapics(u32 current); int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id, u32 addr, u32 gsi_base); |