diff options
Diffstat (limited to 'src/arch/x86/acpigen.c')
-rw-r--r-- | src/arch/x86/acpigen.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/arch/x86/acpigen.c b/src/arch/x86/acpigen.c index a612149ef2..f274ea2177 100644 --- a/src/arch/x86/acpigen.c +++ b/src/arch/x86/acpigen.c @@ -141,6 +141,12 @@ void acpigen_write_name_qword(const char *name, uint64_t val) acpigen_write_qword(val); } +void acpigen_write_name_string(const char *name, const char *string) +{ + acpigen_write_name(name); + acpigen_write_string(string); +} + void acpigen_emit_stream(const char *data, int size) { int i; @@ -149,6 +155,18 @@ void acpigen_emit_stream(const char *data, int size) } } +void acpigen_emit_string(const char *string) +{ + acpigen_emit_stream(string, string ? 0 : strlen(string)); + acpigen_emit_byte('\0'); /* NUL */ +} + +void acpigen_write_string(const char *string) +{ + acpigen_emit_byte(0x0d); + acpigen_emit_string(string); +} + /* * The naming conventions for ACPI namespace names are a bit tricky as * each element has to be 4 chars wide (»All names are a fixed 32 bits.«) |