From 06113719be29c6f8e3f93f98c4ebe3318e889c0c Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Thu, 10 Sep 2009 10:58:53 +0200 Subject: [PATCH] qdev: add parser for chardev properties Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori --- hw/qdev-properties.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hw/qdev-properties.c b/hw/qdev-properties.c index 28b2716b04..2ecb58df2a 100644 --- a/hw/qdev-properties.c +++ b/hw/qdev-properties.c @@ -193,6 +193,16 @@ PropertyInfo qdev_prop_drive = { /* --- character device --- */ +static int parse_chr(DeviceState *dev, Property *prop, const char *str) +{ + CharDriverState **ptr = qdev_get_prop_ptr(dev, prop); + + *ptr = qemu_chr_find(str); + if (*ptr == NULL) + return -1; + return 0; +} + static int print_chr(DeviceState *dev, Property *prop, char *dest, size_t len) { CharDriverState **ptr = qdev_get_prop_ptr(dev, prop); @@ -208,6 +218,7 @@ PropertyInfo qdev_prop_chr = { .name = "chr", .type = PROP_TYPE_CHR, .size = sizeof(CharDriverState*), + .parse = parse_chr, .print = print_chr, }; -- 2.11.4.GIT