5876d9b53f
convert ad-hoc way we use to generate AML for ISA/SMB IPMI devices to a generic approach (i.e. make devices provide its own AML blobs like it is done with other ISA devices (ex. KBD)) Signed-off-by: Igor Mammedov <imammedo@redhat.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Message-Id: <20220608135340.3304695-17-imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
16 lines
352 B
C
16 lines
352 B
C
/*
|
|
* IPMI ACPI firmware handling
|
|
*
|
|
* Copyright (c) 2015,2016 Corey Minyard, MontaVista Software, LLC
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/acpi/ipmi.h"
|
|
|
|
void build_ipmi_dev_aml(AcpiDevAmlIf *adev, Aml *scope)
|
|
{
|
|
}
|