From patchwork Fri Dec 9 12:17:39 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 704456 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3tZsTy45TLz9vF6 for ; Fri, 9 Dec 2016 23:48:22 +1100 (AEDT) Received: from localhost ([::1]:46323 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFKb6-0003An-3m for incoming@patchwork.ozlabs.org; Fri, 09 Dec 2016 07:48:20 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47942) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFK8e-0000nG-NV for qemu-devel@nongnu.org; Fri, 09 Dec 2016 07:18:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cFK8a-0003KS-JA for qemu-devel@nongnu.org; Fri, 09 Dec 2016 07:18:56 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35982) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cFK8a-0003Jx-Ax for qemu-devel@nongnu.org; Fri, 09 Dec 2016 07:18:52 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6D68A7EBBC; Fri, 9 Dec 2016 12:18:51 +0000 (UTC) Received: from thh440s.redhat.com (ovpn-116-17.ams2.redhat.com [10.36.116.17]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uB9CHpax031224; Fri, 9 Dec 2016 07:18:45 -0500 From: Thomas Huth To: qemu-devel@nongnu.org, Paolo Bonzini , Peter Crosthwaite , Richard Henderson , Aurelien Jarno , Peter Maydell Date: Fri, 9 Dec 2016 13:17:39 +0100 Message-Id: <1481285870-3396-10-git-send-email-thuth@redhat.com> In-Reply-To: <1481285870-3396-1-git-send-email-thuth@redhat.com> References: <1481285870-3396-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Fri, 09 Dec 2016 12:18:51 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 09/20] mips: Move CPU files to target/ folder X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Cornelia Huck , James Hogan , Jia Liu , Christian Borntraeger , Bastian Koppelmann , Anthony Green , Marcelo Tosatti , Mark Cave-Ayland , Laurent Vivier , Eduardo Habkost , Alexander Graf , Max Filippov , Michael Walle , Yongbok Kim , "Edgar E. Iglesias" , Guan Xuetao , Artyom Tarasenko , David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Thomas Huth --- MAINTAINERS | 4 ++-- include/hw/mips/cpudevs.h | 2 +- {target-mips => target/mips}/Makefile.objs | 0 {target-mips => target/mips}/TODO | 0 {target-mips => target/mips}/cpu-qom.h | 0 {target-mips => target/mips}/cpu.c | 0 {target-mips => target/mips}/cpu.h | 0 {target-mips => target/mips}/dsp_helper.c | 0 {target-mips => target/mips}/gdbstub.c | 0 {target-mips => target/mips}/helper.c | 0 {target-mips => target/mips}/helper.h | 0 {target-mips => target/mips}/kvm.c | 0 {target-mips => target/mips}/kvm_mips.h | 0 {target-mips => target/mips}/lmi_helper.c | 0 {target-mips => target/mips}/machine.c | 0 {target-mips => target/mips}/mips-defs.h | 0 {target-mips => target/mips}/mips-semi.c | 0 {target-mips => target/mips}/msa_helper.c | 0 {target-mips => target/mips}/op_helper.c | 0 {target-mips => target/mips}/translate.c | 0 {target-mips => target/mips}/translate_init.c | 0 21 files changed, 3 insertions(+), 3 deletions(-) rename {target-mips => target/mips}/Makefile.objs (100%) rename {target-mips => target/mips}/TODO (100%) rename {target-mips => target/mips}/cpu-qom.h (100%) rename {target-mips => target/mips}/cpu.c (100%) rename {target-mips => target/mips}/cpu.h (100%) rename {target-mips => target/mips}/dsp_helper.c (100%) rename {target-mips => target/mips}/gdbstub.c (100%) rename {target-mips => target/mips}/helper.c (100%) rename {target-mips => target/mips}/helper.h (100%) rename {target-mips => target/mips}/kvm.c (100%) rename {target-mips => target/mips}/kvm_mips.h (100%) rename {target-mips => target/mips}/lmi_helper.c (100%) rename {target-mips => target/mips}/machine.c (100%) rename {target-mips => target/mips}/mips-defs.h (100%) rename {target-mips => target/mips}/mips-semi.c (100%) rename {target-mips => target/mips}/msa_helper.c (100%) rename {target-mips => target/mips}/op_helper.c (100%) rename {target-mips => target/mips}/translate.c (100%) rename {target-mips => target/mips}/translate_init.c (100%) diff --git a/MAINTAINERS b/MAINTAINERS index c7b1a3f..fb6c3a6 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -161,7 +161,7 @@ MIPS M: Aurelien Jarno M: Yongbok Kim S: Maintained -F: target-mips/ +F: target/mips/ F: hw/mips/ F: hw/misc/mips_* F: hw/intc/mips_gic.c @@ -274,7 +274,7 @@ F: target/arm/kvm.c MIPS M: James Hogan S: Maintained -F: target-mips/kvm.c +F: target/mips/kvm.c PPC M: Alexander Graf diff --git a/include/hw/mips/cpudevs.h b/include/hw/mips/cpudevs.h index 8673daa..31f5319 100644 --- a/include/hw/mips/cpudevs.h +++ b/include/hw/mips/cpudevs.h @@ -1,7 +1,7 @@ #ifndef HW_MIPS_CPUDEVS_H #define HW_MIPS_CPUDEVS_H -#include "target-mips/cpu-qom.h" +#include "cpu-qom.h" /* Definitions for MIPS CPU internal devices. */ diff --git a/target-mips/Makefile.objs b/target/mips/Makefile.objs similarity index 100% rename from target-mips/Makefile.objs rename to target/mips/Makefile.objs diff --git a/target-mips/TODO b/target/mips/TODO similarity index 100% rename from target-mips/TODO rename to target/mips/TODO diff --git a/target-mips/cpu-qom.h b/target/mips/cpu-qom.h similarity index 100% rename from target-mips/cpu-qom.h rename to target/mips/cpu-qom.h diff --git a/target-mips/cpu.c b/target/mips/cpu.c similarity index 100% rename from target-mips/cpu.c rename to target/mips/cpu.c diff --git a/target-mips/cpu.h b/target/mips/cpu.h similarity index 100% rename from target-mips/cpu.h rename to target/mips/cpu.h diff --git a/target-mips/dsp_helper.c b/target/mips/dsp_helper.c similarity index 100% rename from target-mips/dsp_helper.c rename to target/mips/dsp_helper.c diff --git a/target-mips/gdbstub.c b/target/mips/gdbstub.c similarity index 100% rename from target-mips/gdbstub.c rename to target/mips/gdbstub.c diff --git a/target-mips/helper.c b/target/mips/helper.c similarity index 100% rename from target-mips/helper.c rename to target/mips/helper.c diff --git a/target-mips/helper.h b/target/mips/helper.h similarity index 100% rename from target-mips/helper.h rename to target/mips/helper.h diff --git a/target-mips/kvm.c b/target/mips/kvm.c similarity index 100% rename from target-mips/kvm.c rename to target/mips/kvm.c diff --git a/target-mips/kvm_mips.h b/target/mips/kvm_mips.h similarity index 100% rename from target-mips/kvm_mips.h rename to target/mips/kvm_mips.h diff --git a/target-mips/lmi_helper.c b/target/mips/lmi_helper.c similarity index 100% rename from target-mips/lmi_helper.c rename to target/mips/lmi_helper.c diff --git a/target-mips/machine.c b/target/mips/machine.c similarity index 100% rename from target-mips/machine.c rename to target/mips/machine.c diff --git a/target-mips/mips-defs.h b/target/mips/mips-defs.h similarity index 100% rename from target-mips/mips-defs.h rename to target/mips/mips-defs.h diff --git a/target-mips/mips-semi.c b/target/mips/mips-semi.c similarity index 100% rename from target-mips/mips-semi.c rename to target/mips/mips-semi.c diff --git a/target-mips/msa_helper.c b/target/mips/msa_helper.c similarity index 100% rename from target-mips/msa_helper.c rename to target/mips/msa_helper.c diff --git a/target-mips/op_helper.c b/target/mips/op_helper.c similarity index 100% rename from target-mips/op_helper.c rename to target/mips/op_helper.c diff --git a/target-mips/translate.c b/target/mips/translate.c similarity index 100% rename from target-mips/translate.c rename to target/mips/translate.c diff --git a/target-mips/translate_init.c b/target/mips/translate_init.c similarity index 100% rename from target-mips/translate_init.c rename to target/mips/translate_init.c