c0b5be5247
It was not possible to compile out pvpanic. Use the same trick than applesmc. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com>
31 lines
655 B
C
31 lines
655 B
C
/*
|
|
* 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"
|
|
|
|
#define PVPANIC_IOPORT_PROP "ioport"
|
|
|
|
static inline uint16_t pvpanic_port(void)
|
|
{
|
|
Object *o = object_resolve_path_type("", TYPE_PVPANIC, NULL);
|
|
if (!o) {
|
|
return 0;
|
|
}
|
|
return object_property_get_uint(o, PVPANIC_IOPORT_PROP, NULL);
|
|
}
|
|
|
|
#endif
|