diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-03-28 18:01:36 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-06-18 15:14:37 +0200 |
commit | 3cb75a7cba7e808c0ae007e4d86750849642304e (patch) | |
tree | a4e645a38566e0540d9654fa33e61ac1106968a8 /hw/ide | |
parent | 2f262e06f01a38cb8a218b7c5ad71233883a6b55 (diff) | |
download | qemu-3cb75a7cba7e808c0ae007e4d86750849642304e.zip qemu-3cb75a7cba7e808c0ae007e4d86750849642304e.tar.gz qemu-3cb75a7cba7e808c0ae007e4d86750849642304e.tar.bz2 |
qdev: Move bus properties to a separate global
Simple code movement in order to simplify future refactoring.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/ide')
-rw-r--r-- | hw/ide/qdev.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/hw/ide/qdev.c b/hw/ide/qdev.c index a46578d..b67df3d 100644 --- a/hw/ide/qdev.c +++ b/hw/ide/qdev.c @@ -27,14 +27,16 @@ static char *idebus_get_fw_dev_path(DeviceState *dev); +static Property ide_props[] = { + DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1), + DEFINE_PROP_END_OF_LIST(), +}; + static struct BusInfo ide_bus_info = { .name = "IDE", .size = sizeof(IDEBus), .get_fw_dev_path = idebus_get_fw_dev_path, - .props = (Property[]) { - DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1), - DEFINE_PROP_END_OF_LIST(), - }, + .props = ide_props, }; void ide_bus_new(IDEBus *idebus, DeviceState *dev, int bus_id) |