From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38656) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIbTV-0000qj-QD for qemu-devel@nongnu.org; Thu, 30 Jun 2016 08:53:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bIbTS-0007TA-1N for qemu-devel@nongnu.org; Thu, 30 Jun 2016 08:53:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46669) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIbTR-0007Sy-SP for qemu-devel@nongnu.org; Thu, 30 Jun 2016 08:53:41 -0400 From: Markus Armbruster Date: Thu, 30 Jun 2016 14:53:33 +0200 Message-Id: <1467291213-13393-6-git-send-email-armbru@redhat.com> In-Reply-To: <1467291213-13393-1-git-send-email-armbru@redhat.com> References: <1467291213-13393-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH RFC v3 5/5] Add a few missing #include "qemu/queue.h" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, pbonzini@redhat.com, silbe@linux.vnet.ibm.com Signed-off-by: Markus Armbruster --- audio/audio_int.h | 2 ++ block/vhdx.h | 2 ++ hw/9pfs/9p-synth.h | 3 +-- include/hw/pci/pci_bus.h | 2 ++ 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/audio/audio_int.h b/audio/audio_int.h index 9054747..38ff62e 100644 --- a/audio/audio_int.h +++ b/audio/audio_int.h @@ -27,6 +27,8 @@ #ifndef QEMU_AUDIO_INT_H #define QEMU_AUDIO_INT_H +#include "qemu/queue.h" + #ifdef CONFIG_COREAUDIO #define FLOAT_MIXENG /* #define RECIPROCAL */ diff --git a/block/vhdx.h b/block/vhdx.h index a72559c..cd9487b 100644 --- a/block/vhdx.h +++ b/block/vhdx.h @@ -20,6 +20,8 @@ #ifndef BLOCK_VHDX_H #define BLOCK_VHDX_H +#include "qemu/queue.h" + #define KiB (1 * 1024) #define MiB (KiB * 1024) #define GiB (MiB * 1024) diff --git a/hw/9pfs/9p-synth.h b/hw/9pfs/9p-synth.h index d4eceb4..aa63a2c 100644 --- a/hw/9pfs/9p-synth.h +++ b/hw/9pfs/9p-synth.h @@ -11,11 +11,10 @@ * */ -/* FIXME Does not pass make check-headers, yet! */ - #ifndef HW_9PFS_SYNTH_H #define HW_9PFS_SYNTH_H 1 +#include "qemu/queue.h" typedef struct V9fsSynthNode V9fsSynthNode; typedef ssize_t (*v9fs_synth_read)(void *buf, int len, off_t offset, diff --git a/include/hw/pci/pci_bus.h b/include/hw/pci/pci_bus.h index daf32b3..e91ed29 100644 --- a/include/hw/pci/pci_bus.h +++ b/include/hw/pci/pci_bus.h @@ -3,6 +3,8 @@ #ifndef QEMU_PCI_BUS_H #define QEMU_PCI_BUS_H +#include "qemu/queue.h" + /* * PCI Bus and Bridge datastructures. * -- 2.5.5