summaryrefslogtreecommitdiff
path: root/hw/qdev-addr.h
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2009-08-03 17:35:17 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-10 13:05:48 -0500
commitcf12b95bf5a2f30b37c4b91011fb6a9ab70c920d (patch)
treece27df4da953e74884a6d87becd3ba38a9d0aecd /hw/qdev-addr.h
parent93c8cfd9e67a62711b86f4c93747566885eb7928 (diff)
downloadqemu-cf12b95bf5a2f30b37c4b91011fb6a9ab70c920d.tar.gz
qdev/prop: macros for creating typechecked properties.
There are DEFINE_PROP_$TYPE("name", struct, field, default) macros for each property type. These macros link the qdev_prop_$name struct to the type used by that property. typeof(struct->field) is verifyed to be the correct one for the given property. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
Diffstat (limited to 'hw/qdev-addr.h')
-rw-r--r--hw/qdev-addr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/qdev-addr.h b/hw/qdev-addr.h
index f02bd7af18..a0ddf3863c 100644
--- a/hw/qdev-addr.h
+++ b/hw/qdev-addr.h
@@ -1,2 +1,5 @@
+#define DEFINE_PROP_TADDR(_n, _s, _f, _d) \
+ DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_taddr, target_phys_addr_t)
+
extern PropertyInfo qdev_prop_taddr;
void qdev_prop_set_taddr(DeviceState *dev, const char *name, target_phys_addr_t value);