diff options
author | Markus Armbruster <armbru@redhat.com> | 2016-03-15 19:34:26 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2016-03-21 21:29:00 +0100 |
commit | 97553976dde2181be3ff95863905c4e34776ae70 (patch) | |
tree | d8b93fbdc44494e7a17fe1542470d0ee929428d5 /hw/misc/ivshmem.c | |
parent | fdee2025dd690b35099dd4d04eeef27c2bc1bc9c (diff) | |
download | qemu-97553976dde2181be3ff95863905c4e34776ae70.tar.gz qemu-97553976dde2181be3ff95863905c4e34776ae70.tar.bz2 qemu-97553976dde2181be3ff95863905c4e34776ae70.zip |
ivshmem: Add missing newlines to debug printfs
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <1458066895-20632-12-git-send-email-armbru@redhat.com>
Diffstat (limited to 'hw/misc/ivshmem.c')
-rw-r--r-- | hw/misc/ivshmem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/misc/ivshmem.c b/hw/misc/ivshmem.c index 1838bc8506..11cbc039b7 100644 --- a/hw/misc/ivshmem.c +++ b/hw/misc/ivshmem.c @@ -568,10 +568,10 @@ static void setup_interrupt(IVShmemState *s, int vector) IVSHMEM_DPRINTF("setting up interrupt for vector: %d\n", vector); if (!with_irqfd) { - IVSHMEM_DPRINTF("with eventfd"); + IVSHMEM_DPRINTF("with eventfd\n"); watch_vector_notifier(s, n, vector); } else if (msix_enabled(pdev)) { - IVSHMEM_DPRINTF("with irqfd"); + IVSHMEM_DPRINTF("with irqfd\n"); if (ivshmem_add_kvm_msi_virq(s, vector) < 0) { return; } @@ -582,7 +582,7 @@ static void setup_interrupt(IVShmemState *s, int vector) } } else { /* it will be delayed until msix is enabled, in write_config */ - IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled"); + IVSHMEM_DPRINTF("with irqfd, delayed until msix enabled\n"); } } |