From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46052) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHx84-0007hq-AE for qemu-devel@nongnu.org; Wed, 22 Jul 2015 12:44:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZHx83-0004f2-A6 for qemu-devel@nongnu.org; Wed, 22 Jul 2015 12:44:24 -0400 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:34676) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHx83-0004ZT-48 for qemu-devel@nongnu.org; Wed, 22 Jul 2015 12:44:23 -0400 From: Peter Maydell Date: Wed, 22 Jul 2015 17:44:08 +0100 Message-Id: <1437583451-9677-10-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1437583451-9677-1-git-send-email-peter.maydell@linaro.org> References: <1437583451-9677-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 09/12] apic_internal.h: Include cpu.h directly List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org apic_internal.h relies on cpu.h having been included (for the X86CPU type); include it directly rather than relying on it being pulled in via one of the other includes like timer.h. Signed-off-by: Peter Maydell --- include/hw/i386/apic_internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hw/i386/apic_internal.h b/include/hw/i386/apic_internal.h index dc7a89d..26632ac 100644 --- a/include/hw/i386/apic_internal.h +++ b/include/hw/i386/apic_internal.h @@ -20,6 +20,7 @@ #ifndef QEMU_APIC_INTERNAL_H #define QEMU_APIC_INTERNAL_H +#include "cpu.h" #include "exec/memory.h" #include "hw/cpu/icc_bus.h" #include "qemu/timer.h" -- 1.9.1