From: zhanghailiang Date: Thu, 13 Oct 2016 06:57:28 +0000 (+0800) Subject: colo-compare: remove unused struct CompareChardevProps and 'props' variable X-Git-Tag: v2.9.0-rc2~327^2~12 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=7344ffaa2d1fed640e5ac0f45e339289ef45ca7b;p=mirror_qemu.git colo-compare: remove unused struct CompareChardevProps and 'props' variable After commit 0a73336d, 'props' variable in find_and_check_chardev() is unused. Remove it, togther with struct CompareChardevProps. Signed-off-by: zhanghailiang Reviewed-by: Zhang Chen Signed-off-by: Michael Tokarev --- diff --git a/net/colo-compare.c b/net/colo-compare.c index f791383dbc..2089bea798 100644 --- a/net/colo-compare.c +++ b/net/colo-compare.c @@ -92,10 +92,6 @@ typedef struct CompareClass { ObjectClass parent_class; } CompareClass; -typedef struct CompareChardevProps { - bool is_socket; -} CompareChardevProps; - enum { PRIMARY_IN = 0, SECONDARY_IN, @@ -571,8 +567,6 @@ static int find_and_check_chardev(CharDriverState **chr, char *chr_name, Error **errp) { - CompareChardevProps props; - *chr = qemu_chr_find(chr_name); if (*chr == NULL) { error_setg(errp, "Device '%s' not found", @@ -580,8 +574,6 @@ static int find_and_check_chardev(CharDriverState **chr, return 1; } - memset(&props, 0, sizeof(props)); - if (!qemu_chr_has_feature(*chr, QEMU_CHAR_FEATURE_RECONNECTABLE)) { error_setg(errp, "chardev \"%s\" is not reconnectable", chr_name);