diff options
| author | Hans de Goede <hdegoede@redhat.com> | 2013-04-05 11:30:25 +0200 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-04-16 11:59:08 +0200 |
| commit | 7598b41cfa13b2469b9411eee237a5c551e0ffaf (patch) | |
| tree | 06830aa9d8da956e98f8d34882b69b63b4a3bc72 /hw/usb/host-linux.c | |
| parent | 24a6e7f4d91e9ed5f8117ecb083431a23f8609a0 (diff) | |
| download | focaccia-qemu-7598b41cfa13b2469b9411eee237a5c551e0ffaf.tar.gz focaccia-qemu-7598b41cfa13b2469b9411eee237a5c551e0ffaf.zip | |
usb-serial: Remove double call to qemu_chr_add_handlers( NULL )
usb-serial has a qdev chardev property, and hw/qdev-properties-system.c
already contains:
static void release_chr(Object *obj, const char *name, void *opaque)
{
DeviceState *dev = DEVICE(obj);
Property *prop = opaque;
CharDriverState **ptr = qdev_get_prop_ptr(dev, prop);
CharDriverState *chr = *ptr;
if (chr) {
qemu_chr_add_handlers(chr, NULL, NULL, NULL, NULL);
qemu_chr_fe_release(chr);
}
}
So doing the qemu_chr_add_handlers(s->cs, NULL, NULL, NULL, NULL); from
the usb handle_destroy function too will lead to it being done twice.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb/host-linux.c')
0 files changed, 0 insertions, 0 deletions