2016-06-10 11:15:42 +02:00
|
|
|
/*
|
|
|
|
* QEMU IPMI ACPI handling
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015,2016 Corey Minyard <cminyard@mvista.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
#ifndef HW_ACPI_IPMI_H
|
|
|
|
#define HW_ACPI_IPMI_H
|
|
|
|
|
2022-06-08 15:53:21 +02:00
|
|
|
#include "hw/acpi/acpi_aml_interface.h"
|
2016-06-10 11:15:42 +02:00
|
|
|
|
2022-06-08 15:53:21 +02:00
|
|
|
void build_ipmi_dev_aml(AcpiDevAmlIf *adev, Aml *scope);
|
2016-06-10 11:15:42 +02:00
|
|
|
|
|
|
|
#endif /* HW_ACPI_IPMI_H */
|