diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-01 09:56:12 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-09 14:57:20 -0500 |
| commit | 959f733a296a69564a075d60d8c821ad8e258623 (patch) | |
| tree | e261867939613c7f7b4887f710bb9a50836e1b92 | |
| parent | 7fc2f2c0869f68eaa42446e5a394d79bb7c9f7f7 (diff) | |
| download | focaccia-qemu-959f733a296a69564a075d60d8c821ad8e258623.tar.gz focaccia-qemu-959f733a296a69564a075d60d8c821ad8e258623.zip | |
qdev: integrate reset
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rw-r--r-- | hw/qdev.c | 11 | ||||
| -rw-r--r-- | hw/qdev.h | 3 |
2 files changed, 13 insertions, 1 deletions
diff --git a/hw/qdev.c b/hw/qdev.c index 0e9732b1ca..675248fc12 100644 --- a/hw/qdev.c +++ b/hw/qdev.c @@ -214,12 +214,21 @@ DeviceState *qdev_device_add(QemuOpts *opts) calling this function. */ int qdev_init(DeviceState *dev) { - return dev->info->init(dev, dev->info); + int rc; + + rc = dev->info->init(dev, dev->info); + if (rc < 0) + return rc; + if (dev->info->reset) + qemu_register_reset(dev->info->reset, dev); + return 0; } /* Unlink device from bus and free the structure. */ void qdev_free(DeviceState *dev) { + if (dev->info->reset) + qemu_unregister_reset(dev->info->reset, dev); LIST_REMOVE(dev, sibling); qemu_free(dev); } diff --git a/hw/qdev.h b/hw/qdev.h index 56a0c1f1bb..b146aa1406 100644 --- a/hw/qdev.h +++ b/hw/qdev.h @@ -108,6 +108,9 @@ struct DeviceInfo { Property *props; int no_user; + /* callbacks */ + QEMUResetHandler *reset; + /* Private to qdev / bus. */ qdev_initfn init; BusInfo *bus_info; |