| Submitter | Gerd Hoffmann |
|---|---|
| Date | Aug. 3, 2009, 3:35 p.m. |
| Message ID | <1249313748-6459-6-git-send-email-kraxel@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/30612/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/hw/armv7m.c b/hw/armv7m.c index 2e66d7e..2e4f0ed 100644 --- a/hw/armv7m.c +++ b/hw/armv7m.c @@ -242,12 +242,8 @@ static SysBusDeviceInfo bitband_info = { .qdev.name = "ARM,bitband-memory", .qdev.size = sizeof(BitBandState), .qdev.props = (Property[]) { - { - .name = "base", - .info = &qdev_prop_hex32, - .offset = offsetof(BitBandState, base), - }, - {/* end of list */} + DEFINE_PROP_UINT32("base", BitBandState, base, 0), + DEFINE_PROP_END_OF_LIST(), } };
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- hw/armv7m.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-)