diff options
author | Jakub Czapiga <jacz@semihalf.com> | 2021-01-22 15:47:11 +0100 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2021-01-28 09:10:28 +0000 |
commit | 7435e254d401e2b3bc78756f65e3d0f1b2ce61e2 (patch) | |
tree | 7aa32699e7d9639de08d768f765a72298c068370 /src/include | |
parent | ade4f3520b0c2bade062286ec98b40b49b6534d3 (diff) |
acpi/acpigen.c: Remove unused and incorrect functions
acpigen_write_name_zero() and acpigen_write_name_one() are not
implemented correctly, and are not used anywhere. Drop them in
favor of the more flexible acpigen_write_name_integer() function.
Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: I116fd41624a8e8b536d18d747f21d3131b734dfc
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49834
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-by: Lance Zhao
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/acpi/acpigen.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/acpi/acpigen.h b/src/include/acpi/acpigen.h index 15af0192a3..7b1141c908 100644 --- a/src/include/acpi/acpigen.h +++ b/src/include/acpi/acpigen.h @@ -312,8 +312,6 @@ void acpigen_write_integer(uint64_t data); void acpigen_write_string(const char *string); void acpigen_write_name_unicode(const char *name, const char *string); void acpigen_write_name(const char *name); -void acpigen_write_name_zero(const char *name); -void acpigen_write_name_one(const char *name); void acpigen_write_name_string(const char *name, const char *string); void acpigen_write_name_dword(const char *name, uint32_t val); void acpigen_write_name_qword(const char *name, uint64_t val); |