aboutsummaryrefslogtreecommitdiff
path: root/hw/qdev.h
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2009-09-25 21:42:49 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-05 09:32:49 -0500
commitef80b466230021da9fe490175cd542a58dcabe94 (patch)
tree1a17d701f6a3734339af97830f4a7e2b196f096e /hw/qdev.h
parent7101174e5cd37ed57fadbba9515f2f3e15aec47d (diff)
downloadqemu-ef80b466230021da9fe490175cd542a58dcabe94.zip
qemu-ef80b466230021da9fe490175cd542a58dcabe94.tar.gz
qemu-ef80b466230021da9fe490175cd542a58dcabe94.tar.bz2
store a pointer to QemuOpts in DeviceState, release it when zapping a device.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/qdev.h')
-rw-r--r--hw/qdev.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/qdev.h b/hw/qdev.h
index ca7c21a..7da7837 100644
--- a/hw/qdev.h
+++ b/hw/qdev.h
@@ -29,6 +29,7 @@ enum DevState {
struct DeviceState {
const char *id;
enum DevState state;
+ QemuOpts *opts;
int hotplugged;
DeviceInfo *info;
BusState *parent_bus;