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