From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fEKGW-0003Bn-CR for qemu-devel@nongnu.org; Thu, 03 May 2018 15:51:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fEKGV-0003Iq-L0 for qemu-devel@nongnu.org; Thu, 03 May 2018 15:51:44 -0400 Date: Thu, 3 May 2018 22:51:42 +0300 From: "Michael S. Tsirkin" Message-ID: <1525376963-79623-63-git-send-email-mst@redhat.com> References: <1525376963-79623-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1525376963-79623-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH 62/67] kvm: use include "kvm_ppc.h" consistently List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: eblake@redhat.com, berrange@redhat.com, kwolf@redhat.com, peter.maydell@linaro.org, David Gibson , Alexander Graf , qemu-ppc@nongnu.org Some places include kvm_ppc.h, others target/ppc/kvm_ppc.h. Let's be consistent. Signed-off-by: Michael S. Tsirkin --- hw/ppc/spapr_cpu_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c index 94afeb3..312d6ed 100644 --- a/hw/ppc/spapr_cpu_core.c +++ b/hw/ppc/spapr_cpu_core.c @@ -15,7 +15,7 @@ #include "qapi/error.h" #include "sysemu/cpus.h" #include "sysemu/kvm.h" -#include "target/ppc/kvm_ppc.h" +#include "kvm_ppc.h" #include "hw/ppc/ppc.h" #include "target/ppc/mmu-hash64.h" #include "sysemu/numa.h" -- MST