summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2009-08-10 19:27:59 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-10 19:27:59 -0500
commitc981d39c95fcf4c3defa7828a8c9866cf3c83a1b (patch)
tree6f541b06ca4691ea22f0afb61dcf46c9c85a3861 /hw
parent562593aa8a7513308477710a59cc383bba056752 (diff)
downloadqemu-c981d39c95fcf4c3defa7828a8c9866cf3c83a1b.tar.gz
Fix virtio-blk
Reported-by: Christoph Hellwig Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/qdev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/qdev.h b/hw/qdev.h
index 5016968e86..204c4e5d95 100644
--- a/hw/qdev.h
+++ b/hw/qdev.h
@@ -198,7 +198,7 @@ extern PropertyInfo qdev_prop_pci_devfn;
#define DEFINE_PROP_CHR(_n, _s, _f) \
DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharDriverState*)
#define DEFINE_PROP_DRIVE(_n, _s, _f) \
- DEFINE_PROP(_n, _s, _f, qdev_prop_chr, DriveInfo*)
+ DEFINE_PROP(_n, _s, _f, qdev_prop_drive, DriveInfo*)
#define DEFINE_PROP_MACADDR(_n, _s, _f) \
DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, uint8_t[6])