diff options
Diffstat (limited to 'src/acpi')
-rw-r--r-- | src/acpi/acpigen.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/acpi/acpigen.c b/src/acpi/acpigen.c index fc6da1beb9..bf1b373a60 100644 --- a/src/acpi/acpigen.c +++ b/src/acpi/acpigen.c @@ -742,6 +742,17 @@ void acpigen_write_STA(uint8_t status) acpigen_pop_len(); } +void acpigen_write_STA_ext(const char *namestring) +{ + /* + * Method (_STA, 0, NotSerialized) { Return (ext_val) } + */ + acpigen_write_method("_STA", 0); + acpigen_emit_byte(RETURN_OP); + acpigen_emit_namestring(namestring); + acpigen_pop_len(); +} + /* * Generates a func with max supported P-states. */ |