diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-08-03 17:35:18 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-10 13:05:49 -0500 |
commit | 313feaabc600b0eaf4e60d591b9a1f6bdf680efc (patch) | |
tree | d72b884cae2048f2de0d5497d104721352bca6b7 /hw/qdev.h | |
parent | cf12b95bf5a2f30b37c4b91011fb6a9ab70c920d (diff) |
qdev/prop: add CharDriverState 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.h')
-rw-r--r-- | hw/qdev.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include "hw.h" #include "sysemu.h" #include "sys-queue.h" +#include "qemu-char.h" #include "qemu-option.h" typedef struct Property Property; @@ -65,6 +66,7 @@ enum PropertyType { PROP_TYPE_TADDR, PROP_TYPE_MACADDR, PROP_TYPE_DRIVE, + PROP_TYPE_CHR, PROP_TYPE_PTR, }; @@ -155,6 +157,7 @@ extern PropertyInfo qdev_prop_uint32; extern PropertyInfo qdev_prop_uint64; extern PropertyInfo qdev_prop_hex32; extern PropertyInfo qdev_prop_hex64; +extern PropertyInfo qdev_prop_chr; extern PropertyInfo qdev_prop_ptr; extern PropertyInfo qdev_prop_macaddr; extern PropertyInfo qdev_prop_drive; @@ -192,6 +195,8 @@ extern PropertyInfo qdev_prop_pci_devfn; #define DEFINE_PROP_PTR(_n, _s, _f) \ DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*) +#define DEFINE_PROP_CHR(_n, _s, _f) \ + DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*) #define DEFINE_PROP_MACADDR(_n, _s, _f) \ DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, uint8_t[6]) @@ -205,6 +210,7 @@ void qdev_prop_set(DeviceState *dev, const char *name, void *src, enum PropertyT void qdev_prop_set_uint16(DeviceState *dev, const char *name, uint16_t value); void qdev_prop_set_uint32(DeviceState *dev, const char *name, uint32_t value); void qdev_prop_set_uint64(DeviceState *dev, const char *name, uint64_t value); +void qdev_prop_set_chr(DeviceState *dev, const char *name, CharDriverState *value); void qdev_prop_set_drive(DeviceState *dev, const char *name, DriveInfo *value); /* FIXME: Remove opaque pointer properties. */ void qdev_prop_set_ptr(DeviceState *dev, const char *name, void *value); |