aboutsummaryrefslogtreecommitdiffstats
path: root/hw/armv7m.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2009-08-03 17:35:21 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-10 13:05:50 -0500
commit1832efa29d07cfa35fcd796df1f8ccefb694a59d (patch)
tree4be88aa3cd9b0fec0539a3923b6b005a222e96f6 /hw/armv7m.c
parente325775b35d918ac4f90b2cf6289fe29a91a2071 (diff)
qdev/prop: convert armv7m.c to helper macros.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
Diffstat (limited to 'hw/armv7m.c')
-rw-r--r--hw/armv7m.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/hw/armv7m.c b/hw/armv7m.c
index 2e66d7e93..2e4f0ed80 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(),
}
};