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>
		
			
				
	
	
		
			17 lines
		
	
	
		
			406 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			406 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 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
 | 
						|
 | 
						|
#include "hw/acpi/acpi_aml_interface.h"
 | 
						|
 | 
						|
void build_ipmi_dev_aml(AcpiDevAmlIf *adev, Aml *scope);
 | 
						|
 | 
						|
#endif /* HW_ACPI_IPMI_H */
 |