diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-01 09:34:28 -0600 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-03 10:41:06 -0600 |
| commit | 212ad111683a5b5a79a74d6141a4b75f532a4c8f (patch) | |
| tree | 88577e2d790c0570018b636a221f30186063d115 /hw/qdev.h | |
| parent | 93c511a1adad281492f18b13e164ae4ac790c052 (diff) | |
| download | focaccia-qemu-212ad111683a5b5a79a74d6141a4b75f532a4c8f.tar.gz focaccia-qemu-212ad111683a5b5a79a74d6141a4b75f532a4c8f.zip | |
qdev: kill off DeviceInfo list
Teach the various bits of code that need to walk through available devices to do so via QOM. Signed-off-by: Anthony Liguori
Diffstat (limited to 'hw/qdev.h')
| -rw-r--r-- | hw/qdev.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/qdev.h b/hw/qdev.h index b46d06e277..af167bef2d 100644 --- a/hw/qdev.h +++ b/hw/qdev.h @@ -258,9 +258,7 @@ struct DeviceInfo { qdev_event unplug; qdev_event exit; BusInfo *bus_info; - struct DeviceInfo *next; }; -extern DeviceInfo *device_info_list; void qdev_register(DeviceInfo *info); void qdev_register_subclass(DeviceInfo *info, const char *parent); |