From e8758b62290c45b5b2f3c7925e250b9f16293f27 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Thu, 18 May 2017 12:36:42 +0200 Subject: trivial: Remove unneeded ifndef in memory.h All the file is surounded already by #ifndef CONFIG_USER_ONLY. Signed-off-by: Juan Quintela Reviewed-by: Dr. David Alan Gilbert Reviewed-by: Laurent Vivier Signed-off-by: Michael Tokarev --- include/exec/memory.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include') diff --git a/include/exec/memory.h b/include/exec/memory.h index bfdc685..80e605a 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -17,9 +17,7 @@ #ifndef CONFIG_USER_ONLY #include "exec/cpu-common.h" -#ifndef CONFIG_USER_ONLY #include "exec/hwaddr.h" -#endif #include "exec/memattrs.h" #include "exec/ramlist.h" #include "qemu/queue.h" -- cgit v1.1 From 2283adfb0aa1ccc70c4a4a951423343dcb9e94d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 8 May 2017 20:39:12 -0300 Subject: hw/mips: add missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Philippe Mathieu-Daudé Acked-by: Aurelien Jarno Signed-off-by: Michael Tokarev --- include/hw/mips/mips.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/hw/mips/mips.h b/include/hw/mips/mips.h index e0065ce..16412dc 100644 --- a/include/hw/mips/mips.h +++ b/include/hw/mips/mips.h @@ -6,6 +6,7 @@ #define INITRD_PAGE_MASK (~((1 << 16) - 1)) #include "exec/memory.h" +#include "hw/irq.h" /* gt64xxx.c */ PCIBus *gt64120_register(qemu_irq *pic); -- cgit v1.1