diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-08-03 17:35:29 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:52 -0500 |
commit | 186507b4466c70fdd8df7d14b425b5e0821c0960 (patch) | |
tree | aa4910f21e53d38c27458c8c4d174a8cf357037e /hw/pcnet.c | |
parent | 01274424cf1462661c1c03eaa59c885a6b04da29 (diff) |
qdev/prop: convert pcnet.c to helper macros.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Message-Id:
Diffstat (limited to 'hw/pcnet.c')
-rw-r--r-- | hw/pcnet.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/hw/pcnet.c b/hw/pcnet.c index 22ab6beaf3..637dcfbb53 100644 --- a/hw/pcnet.c +++ b/hw/pcnet.c @@ -2145,12 +2145,8 @@ static SysBusDeviceInfo lance_info = { .qdev.name = "lance", .qdev.size = sizeof(SysBusPCNetState), .qdev.props = (Property[]) { - { - .name = "dma", - .info = &qdev_prop_ptr, - .offset = offsetof(SysBusPCNetState, state.dma_opaque), - }, - {/* end of list */} + DEFINE_PROP_PTR("dma", SysBusPCNetState, state.dma_opaque), + DEFINE_PROP_END_OF_LIST(), } }; |