summaryrefslogtreecommitdiffstats
path: root/hw/usb/ccid-card-emulated.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2016-04-22 21:53:53 +0800
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 20:03:50 -0600
commitc00fe5ce419d94dbeea81d3fd4d234ecfab02581 (patch)
tree00ee1c39059e22fdd75e036ad848b4925deee717 /hw/usb/ccid-card-emulated.c
parenta9838399d4fc50f0e713445609441b77ec41b8e7 (diff)
downloadhqemu-c00fe5ce419d94dbeea81d3fd4d234ecfab02581.zip
hqemu-c00fe5ce419d94dbeea81d3fd4d234ecfab02581.tar.gz
event-notifier: Add "is_external" parameter
All callers pass "false" keeping the old semantics. The windows implementation doesn't distinguish the flag yet. On posix, it is passed down to the underlying aio context. Signed-off-by: Fam Zheng <famz@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/usb/ccid-card-emulated.c')
-rw-r--r--hw/usb/ccid-card-emulated.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/ccid-card-emulated.c b/hw/usb/ccid-card-emulated.c
index 9ddd5ad..3213f9f 100644
--- a/hw/usb/ccid-card-emulated.c
+++ b/hw/usb/ccid-card-emulated.c
@@ -407,7 +407,7 @@ static int init_event_notifier(EmulatedState *card)
DPRINTF(card, 2, "event notifier creation failed\n");
return -1;
}
- event_notifier_set_handler(&card->notifier, card_event_handler);
+ event_notifier_set_handler(&card->notifier, false, card_event_handler);
return 0;
}
OpenPOWER on IntegriCloud