From: Gerd Hoffmann Date: Mon, 3 Aug 2009 15:35:43 +0000 (+0200) Subject: qdev/prop: convert tcx.c to helper macros. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=53dad4992c700671d2f3d1157b489804bf0bca47;p=qemu.git qdev/prop: convert tcx.c to helper macros. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori Message-Id: --- diff --git a/hw/tcx.c b/hw/tcx.c index 87c8f7a950..68dbf027b9 100644 --- a/hw/tcx.c +++ b/hw/tcx.c @@ -646,33 +646,12 @@ static SysBusDeviceInfo tcx_info = { .qdev.name = "SUNW,tcx", .qdev.size = sizeof(TCXState), .qdev.props = (Property[]) { - { - .name = "addr", - .info = &qdev_prop_taddr, - .offset = offsetof(TCXState, addr), - .defval = (target_phys_addr_t[]) { -1 }, - },{ - .name = "vram_size", - .info = &qdev_prop_hex32, - .offset = offsetof(TCXState, vram_size), - .defval = (uint32_t[]) { -1 }, - },{ - .name = "width", - .info = &qdev_prop_uint16, - .offset = offsetof(TCXState, width), - .defval = (uint16_t[]) { -1 }, - },{ - .name = "height", - .info = &qdev_prop_uint16, - .offset = offsetof(TCXState, height), - .defval = (uint16_t[]) { -1 }, - },{ - .name = "depth", - .info = &qdev_prop_uint16, - .offset = offsetof(TCXState, depth), - .defval = (uint16_t[]) { -1 }, - }, - {/* end of list */} + DEFINE_PROP_TADDR("addr", TCXState, addr, -1), + DEFINE_PROP_HEX32("vram_size", TCXState, vram_size, -1), + DEFINE_PROP_UINT16("width", TCXState, width, -1), + DEFINE_PROP_UINT16("height", TCXState, height, -1), + DEFINE_PROP_UINT16("depth", TCXState, depth, -1), + DEFINE_PROP_END_OF_LIST(), } };