]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
acpi: Move acpi_fill_header() to the generic header
authorSimon Glass <sjg@chromium.org>
Wed, 1 Dec 2021 16:02:45 +0000 (09:02 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 25 Jan 2022 18:44:36 +0000 (11:44 -0700)
This function is not x86-specific so move it into the common header file.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/x86/include/asm/acpi_table.h
include/acpi/acpi_table.h

index 55b1a3d3f171e4ff78dc6e2b93982cf287fbf77c..914ca988aafcbfe51754d3a91fb85780c424afe6 100644 (file)
@@ -24,7 +24,6 @@ struct acpi_table_header;
 
 /* These can be used by the target port */
 
-void acpi_fill_header(struct acpi_table_header *header, char *signature);
 void acpi_create_fadt(struct acpi_fadt *fadt, struct acpi_facs *facs,
                      void *dsdt);
 int acpi_create_madt_lapics(u32 current);
index dbfea3be706c73fd7c6e140a578cce6323e53be7..d3fbdc1de2bab94cec90beed35929b2adfc0c322 100644 (file)
@@ -698,6 +698,14 @@ void acpi_setup_base_tables(struct acpi_ctx *ctx, void *start);
 void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt,
                     struct acpi_xsdt *xsdt);
 
+/**
+ * acpi_fill_header() - Set up a table header
+ *
+ * @header: Pointer to header to set up
+ * @signature: 4-character signature to use (e.g. "FACS")
+ */
+void acpi_fill_header(struct acpi_table_header *header, char *signature);
+
 #endif /* !__ACPI__*/
 
 #include <asm/acpi_table.h>