This puts it in a more logical place and avoids the need for forward declarations in the next patch of this series.
Note no code changes, just moving it around. Signed-off-by: Hans de Goede <hdego...@redhat.com> --- spice-qemu-char.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/spice-qemu-char.c b/spice-qemu-char.c index 607abb6..530d9a6 100644 --- a/spice-qemu-char.c +++ b/spice-qemu-char.c @@ -199,6 +199,18 @@ static int spice_chr_write(CharDriverState *chr, const uint8_t *buf, int len) return read_bytes; } +static void spice_chr_guest_open(struct CharDriverState *chr) +{ + SpiceCharDriver *s = chr->opaque; + vmc_register_interface(s); +} + +static void spice_chr_guest_close(struct CharDriverState *chr) +{ + SpiceCharDriver *s = chr->opaque; + vmc_unregister_interface(s); +} + static void spice_chr_close(struct CharDriverState *chr) { SpiceCharDriver *s = chr->opaque; @@ -213,18 +225,6 @@ static void spice_chr_close(struct CharDriverState *chr) g_free(s); } -static void spice_chr_guest_open(struct CharDriverState *chr) -{ - SpiceCharDriver *s = chr->opaque; - vmc_register_interface(s); -} - -static void spice_chr_guest_close(struct CharDriverState *chr) -{ - SpiceCharDriver *s = chr->opaque; - vmc_unregister_interface(s); -} - static void print_allowed_subtypes(void) { const char** psubtype; -- 1.8.1.4