mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/misc/pvpanic: extract public API from i386/pc to "hw/misc/pvpanic.h"
and remove the old i386/pc dependency. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
489983d6b4
commit
0d5d8a3a90
4 changed files with 26 additions and 9 deletions
|
@ -306,9 +306,6 @@ int piix4_init(PCIBus *bus, ISABus **isa_bus, int devfn);
|
|||
void pc_system_firmware_init(MemoryRegion *rom_memory,
|
||||
bool isapc_ram_fw);
|
||||
|
||||
/* pvpanic.c */
|
||||
uint16_t pvpanic_port(void);
|
||||
|
||||
/* acpi-build.c */
|
||||
void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid,
|
||||
const CPUArchIdList *apic_ids, GArray *entry);
|
||||
|
|
21
include/hw/misc/pvpanic.h
Normal file
21
include/hw/misc/pvpanic.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* QEMU simulated pvpanic device.
|
||||
*
|
||||
* Copyright Fujitsu, Corp. 2013
|
||||
*
|
||||
* Authors:
|
||||
* Wen Congyang <wency@cn.fujitsu.com>
|
||||
* Hu Tao <hutao@cn.fujitsu.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_MISC_PVPANIC_H
|
||||
#define HW_MISC_PVPANIC_H
|
||||
|
||||
#define TYPE_PVPANIC "pvpanic"
|
||||
|
||||
uint16_t pvpanic_port(void);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue