| Submitter | Gerd Hoffmann |
|---|---|
| Date | Aug. 3, 2009, 3:35 p.m. |
| Message ID | <1249313748-6459-14-git-send-email-kraxel@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/30641/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/hw/pcnet.c b/hw/pcnet.c index 22ab6be..637dcfb 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(), } };
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- hw/pcnet.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-)