diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-01-21 15:05:00 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-03-27 09:22:07 +0100 |
commit | 4b0c1c41166f2aa92ed57e44e793638d4964a224 (patch) | |
tree | 76496868de0ea254d9f5f35998bcf0c6bb9107ee /include | |
parent | 23f128f55bf9ded7bed136f9b32f81eeacbb9f36 (diff) | |
download | u-boot-4b0c1c41166f2aa92ed57e44e793638d4964a224.zip u-boot-4b0c1c41166f2aa92ed57e44e793638d4964a224.tar.gz u-boot-4b0c1c41166f2aa92ed57e44e793638d4964a224.tar.bz2 |
acpi: remove duplicate declaration of acpi_fill_header()
acpi_fill_header() is declared twice in include/acpi/acpi_table.h
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/acpi_table.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/acpi/acpi_table.h b/include/acpi/acpi_table.h index 954e3e9..15fd61a 100644 --- a/include/acpi/acpi_table.h +++ b/include/acpi/acpi_table.h @@ -864,16 +864,6 @@ void acpi_create_dbg2(struct acpi_dbg2_header *dbg2, const char *device_path); /** - * acpi_fill_header() - Set up a new table header - * - * This sets all fields except length, revision, checksum and creator_revision - * - * @header: ACPI header to update - * @signature: Table signature to use (4 characters) - */ -void acpi_fill_header(struct acpi_table_header *header, char *signature); - -/** * acpi_align() - Align the ACPI output pointer to a 16-byte boundary * * @ctx: ACPI context |