Store("formatted string", DEBUG) */
| 1553 | |
| 1554 | /* Store("formatted string", DEBUG) */ |
| 1555 | void acpigen_write_debug_sprintf(const char *fmt, ...) |
| 1556 | { |
| 1557 | va_list args; |
| 1558 | |
| 1559 | acpigen_write_store(); |
| 1560 | |
| 1561 | acpigen_emit_byte(STRING_PREFIX); |
| 1562 | va_start(args, fmt); |
| 1563 | vtxprintf(acpigen_tx_byte, fmt, args, NULL); |
| 1564 | va_end(args); |
| 1565 | acpigen_emit_byte('\0'); |
| 1566 | |
| 1567 | acpigen_emit_ext_op(DEBUG_OP); |
| 1568 | } |
| 1569 | |
| 1570 | void acpigen_write_if(void) |
| 1571 | { |
no test coverage detected