From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9lXJ-0003DT-Pu for qemu-devel@nongnu.org; Mon, 19 Mar 2012 18:58:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S9lXF-00013Q-2U for qemu-devel@nongnu.org; Mon, 19 Mar 2012 18:58:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28166) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S9lXE-00012m-Q1 for qemu-devel@nongnu.org; Mon, 19 Mar 2012 18:58:40 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q2JMwduK029706 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 19 Mar 2012 18:58:39 -0400 From: Juan Quintela Date: Mon, 19 Mar 2012 23:57:55 +0100 Message-Id: <799cde8d44604d5e098471c509fa269cbab5f6db.1332197811.git.quintela@redhat.com> In-Reply-To: References: In-Reply-To: References: Subject: [Qemu-devel] [PATCH 27/36] vmstate: remove unneeded includes from target-*/machine.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Juan Quintela --- target-alpha/machine.c | 1 - target-arm/machine.c | 1 - target-cris/machine.c | 1 - target-i386/machine.c | 6 ------ target-lm32/machine.c | 1 - target-mips/machine.c | 3 --- target-ppc/machine.c | 2 -- target-sparc/machine.c | 4 ---- 8 files changed, 0 insertions(+), 19 deletions(-) diff --git a/target-alpha/machine.c b/target-alpha/machine.c index 8b3b42e..22c70f3 100644 --- a/target-alpha/machine.c +++ b/target-alpha/machine.c @@ -1,5 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" static int get_fpcr(QEMUFile *f, void *opaque, size_t size) { diff --git a/target-arm/machine.c b/target-arm/machine.c index 31e49ac..f8ccdd7 100644 --- a/target-arm/machine.c +++ b/target-arm/machine.c @@ -1,5 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" static bool feature_vfp_needed(void *opaque) { diff --git a/target-cris/machine.c b/target-cris/machine.c index 1b96265..1dbf8b5 100644 --- a/target-cris/machine.c +++ b/target-cris/machine.c @@ -1,5 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" static const VMStateDescription vmstate_tlbset = { .name = "cpu/tlbset", diff --git a/target-i386/machine.c b/target-i386/machine.c index c2a8872..0ef12ac 100644 --- a/target-i386/machine.c +++ b/target-i386/machine.c @@ -1,10 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" -#include "hw/pc.h" -#include "hw/isa.h" - -#include "cpu.h" -#include "kvm.h" static const VMStateDescription vmstate_segment = { .name = "segment", diff --git a/target-lm32/machine.c b/target-lm32/machine.c index 24db6c0..132259d 100644 --- a/target-lm32/machine.c +++ b/target-lm32/machine.c @@ -1,5 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" const VMStateDescription vmstate_cpu = { .name = "cpu", diff --git a/target-mips/machine.c b/target-mips/machine.c index 8951748..bbfa2a9 100644 --- a/target-mips/machine.c +++ b/target-mips/machine.c @@ -1,7 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" - -#include "cpu.h" static const VMStateDescription vmstate_tc = { .name = "tc", diff --git a/target-ppc/machine.c b/target-ppc/machine.c index ca60bc0..c4547df 100644 --- a/target-ppc/machine.c +++ b/target-ppc/machine.c @@ -1,6 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" -#include "kvm.h" static const VMStateDescription vmstate_tlb = { .name = "tlb", diff --git a/target-sparc/machine.c b/target-sparc/machine.c index 818b11c..b599ac7 100644 --- a/target-sparc/machine.c +++ b/target-sparc/machine.c @@ -1,8 +1,4 @@ #include "hw/hw.h" -#include "hw/boards.h" -#include "qemu-timer.h" - -#include "cpu.h" static const VMStateDescription vmstate_cpu_timer = { .name = "cpu_timer", -- 1.7.7.6