From c885159a7ad2b2af35f5cf9aaa6966a013824388 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 3 Aug 2009 17:35:35 +0200 Subject: qdev/prop: convert sun4m.c to helper macros. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori Message-Id: --- hw/sun4m.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'hw/sun4m.c') diff --git a/hw/sun4m.c b/hw/sun4m.c index abadfd6ffe..ddc295a9a8 100644 --- a/hw/sun4m.c +++ b/hw/sun4m.c @@ -695,12 +695,8 @@ static SysBusDeviceInfo ram_info = { .qdev.name = "memory", .qdev.size = sizeof(RamDevice), .qdev.props = (Property[]) { - { - .name = "size", - .info = &qdev_prop_uint64, - .offset = offsetof(RamDevice, size), - }, - {/* end of property list */} + DEFINE_PROP_UINT64("size", RamDevice, size, 0), + DEFINE_PROP_END_OF_LIST(), } }; -- cgit v1.2.1