From bb36f66a97930cbbab8b483dddf82218b590f195 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 3 Aug 2009 17:35:26 +0200 Subject: [PATCH] qdev/prop: convert integratorcp.c to helper macros. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori Message-Id: --- hw/integratorcp.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/hw/integratorcp.c b/hw/integratorcp.c index ddc8d8556f..2d83004d03 100644 --- a/hw/integratorcp.c +++ b/hw/integratorcp.c @@ -526,12 +526,8 @@ static SysBusDeviceInfo core_info = { .qdev.name = "integrator_core", .qdev.size = sizeof(integratorcm_state), .qdev.props = (Property[]) { - { - .name = "memsz", - .info = &qdev_prop_uint32, - .offset = offsetof(integratorcm_state, memsz), - }, - {/* end of list */} + DEFINE_PROP_UINT32("memsz", integratorcm_state, memsz, 0), + DEFINE_PROP_END_OF_LIST(), } };