diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-10-22 13:09:40 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-24 15:46:10 +0200 |
commit | 58fa54947e6b8a26aaeb1b719eabfd0e1461a2b3 (patch) | |
tree | 53ae3fcba5f86d9446a0051bc8d51ed7cbb24957 /qemu-char.c | |
parent | 8c260cb13c2d9a889b660e829c3f5769ae030ec4 (diff) | |
download | qemu-58fa54947e6b8a26aaeb1b719eabfd0e1461a2b3.tar.gz qemu-58fa54947e6b8a26aaeb1b719eabfd0e1461a2b3.tar.bz2 qemu-58fa54947e6b8a26aaeb1b719eabfd0e1461a2b3.zip |
char: remove unused qemu_chr_fe_event
I introduced this function in d61b0c9a2f7f, but it isn't
used. Furthermore, it was incomplete, as it would need to translate QEMU
chr events to Spice port events.
(presumably it was used in the follow-up NBD-spice series that was not
completed: http://lists.gnu.org/archive/html/qemu-devel/2013-11/msg02024.html)
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20161022100951.19562-4-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qemu-char.c')
-rw-r--r-- | qemu-char.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/qemu-char.c b/qemu-char.c index 3b98acf279..9bd2e652ed 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -4226,15 +4226,6 @@ void qemu_chr_fe_set_open(CharBackend *be, int fe_open) } } -void qemu_chr_fe_event(CharBackend *be, int event) -{ - CharDriverState *chr = be->chr; - - if (chr && chr->chr_fe_event) { - chr->chr_fe_event(chr, event); - } -} - guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition cond, GIOFunc func, void *user_data) { |