mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03: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
|
@ -17,7 +17,7 @@
|
|||
#include "qemu/log.h"
|
||||
|
||||
#include "hw/nvram/fw_cfg.h"
|
||||
#include "hw/i386/pc.h"
|
||||
#include "hw/misc/pvpanic.h"
|
||||
|
||||
/* The bit of supported pv event */
|
||||
#define PVPANIC_F_PANICKED 0
|
||||
|
@ -25,9 +25,8 @@
|
|||
/* The pv event value */
|
||||
#define PVPANIC_PANICKED (1 << PVPANIC_F_PANICKED)
|
||||
|
||||
#define TYPE_ISA_PVPANIC_DEVICE "pvpanic"
|
||||
#define ISA_PVPANIC_DEVICE(obj) \
|
||||
OBJECT_CHECK(PVPanicState, (obj), TYPE_ISA_PVPANIC_DEVICE)
|
||||
OBJECT_CHECK(PVPanicState, (obj), TYPE_PVPANIC)
|
||||
|
||||
static void handle_event(int event)
|
||||
{
|
||||
|
@ -104,7 +103,7 @@ static void pvpanic_isa_realizefn(DeviceState *dev, Error **errp)
|
|||
|
||||
uint16_t pvpanic_port(void)
|
||||
{
|
||||
Object *o = object_resolve_path_type("", TYPE_ISA_PVPANIC_DEVICE, NULL);
|
||||
Object *o = object_resolve_path_type("", TYPE_PVPANIC, NULL);
|
||||
if (!o) {
|
||||
return 0;
|
||||
}
|
||||
|
@ -126,7 +125,7 @@ static void pvpanic_isa_class_init(ObjectClass *klass, void *data)
|
|||
}
|
||||
|
||||
static TypeInfo pvpanic_isa_info = {
|
||||
.name = TYPE_ISA_PVPANIC_DEVICE,
|
||||
.name = TYPE_PVPANIC,
|
||||
.parent = TYPE_ISA_DEVICE,
|
||||
.instance_size = sizeof(PVPanicState),
|
||||
.instance_init = pvpanic_isa_initfn,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue