acpi-utils.h (981c9b88e674408a1579ca3aa8d42770e3b689de) | acpi-utils.h (a2ce7dbd917a18408cf4bfd132578b46c2752a72) |
---|---|
1/* 2 * Utilities for working with ACPI tables 3 * 4 * Copyright (c) 2013 Red Hat Inc. 5 * 6 * Authors: 7 * Michael S. Tsirkin <mst@redhat.com>, 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 13#ifndef TEST_ACPI_UTILS_H 14#define TEST_ACPI_UTILS_H 15 | 1/* 2 * Utilities for working with ACPI tables 3 * 4 * Copyright (c) 2013 Red Hat Inc. 5 * 6 * Authors: 7 * Michael S. Tsirkin <mst@redhat.com>, 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 13#ifndef TEST_ACPI_UTILS_H 14#define TEST_ACPI_UTILS_H 15 |
16#include "libqtest.h" | 16#include "libqos/libqtest.h" |
17 18/* DSDT and SSDTs format */ 19typedef struct { 20 uint8_t *aml; /* aml bytecode from guest */ 21 uint32_t aml_len; 22 gchar *aml_file; 23 gchar *asl; /* asl code generated from aml */ 24 gsize asl_len; --- 32 unchanged lines hidden --- | 17 18/* DSDT and SSDTs format */ 19typedef struct { 20 uint8_t *aml; /* aml bytecode from guest */ 21 uint32_t aml_len; 22 gchar *aml_file; 23 gchar *asl; /* asl code generated from aml */ 24 gsize asl_len; --- 32 unchanged lines hidden --- |