From 8017dc2688bd8bed943f30740e4b91351d3e114a Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 3 Aug 2009 17:35:47 +0200 Subject: [PATCH] qdev/prop: convert xilinx_intc.c to helper macros. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori Message-Id: --- hw/xilinx_intc.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/hw/xilinx_intc.c b/hw/xilinx_intc.c index 3f08bf81b6..7fadad518c 100644 --- a/hw/xilinx_intc.c +++ b/hw/xilinx_intc.c @@ -162,12 +162,8 @@ static SysBusDeviceInfo xilinx_intc_info = { .qdev.name = "xilinx,intc", .qdev.size = sizeof(struct xlx_pic), .qdev.props = (Property[]) { - { - .name = "kind-of-intr", - .info = &qdev_prop_uint32, - .offset = offsetof(struct xlx_pic, c_kind_of_intr), - }, - {/* end of list */} + DEFINE_PROP_UINT32("kind-of-intr", struct xlx_pic, c_kind_of_intr, 0), + DEFINE_PROP_END_OF_LIST(), } }; -- 2.11.4.GIT