From patchwork Fri Mar 8 20:06:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 226203 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)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E9A702C02FB for ; Sat, 9 Mar 2013 07:14:28 +1100 (EST) Received: from localhost ([::1]:33753 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UE3gR-0000xx-2g for incoming@patchwork.ozlabs.org; Fri, 08 Mar 2013 15:14:27 -0500 Received: from eggs.gnu.org ([208.118.235.92]:48463) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UE3aS-0000BT-BP for qemu-devel@nongnu.org; Fri, 08 Mar 2013 15:08:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UE3a7-0000aM-KE for qemu-devel@nongnu.org; Fri, 08 Mar 2013 15:08:16 -0500 Received: from cantor2.suse.de ([195.135.220.15]:39335 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UE3a7-0000ZO-DE; Fri, 08 Mar 2013 15:07:55 -0500 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 644D1A5211; Fri, 8 Mar 2013 21:07:11 +0100 (CET) From: Alexander Graf To: qemu-devel qemu-devel Date: Fri, 8 Mar 2013 21:06:41 +0100 Message-Id: <1362773228-1747-40-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1362773228-1747-1-git-send-email-agraf@suse.de> References: <1362773228-1747-1-git-send-email-agraf@suse.de> MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x X-Received-From: 195.135.220.15 Cc: Blue Swirl , "qemu-ppc@nongnu.org list:PowerPC" , =?utf-8?q?Andreas=20F=C3=A4rber?= , =?utf-8?q?Aur=C3=A9lien=20Jarno?= Subject: [Qemu-devel] [PATCH 39/66] target-ppc: Extract MPC8240 alias X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Andreas Färber Signed-off-by: Andreas Färber Signed-off-by: Alexander Graf --- target-ppc/translate_init.c | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 2e41f0b..4e5278d 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -7042,8 +7042,6 @@ enum { #define CPU_POWERPC_MPC5200_v12 CPU_POWERPC_G2LEgp1 #define CPU_POWERPC_MPC5200B_v20 CPU_POWERPC_G2LEgp1 #define CPU_POWERPC_MPC5200B_v21 CPU_POWERPC_G2LEgp1 - /* MPC82xx microcontrollers */ -#define CPU_POWERPC_MPC8240 CPU_POWERPC_MPC603 /* e200 family */ /* e200 cores */ #if 0 @@ -7899,9 +7897,6 @@ static const ppc_def_t ppc_defs[] = { POWERPC_DEF("G2leGP1", CPU_POWERPC_G2LEgp1, G2LE) /* PowerPC G2LE GP3 core */ POWERPC_DEF("G2leGP3", CPU_POWERPC_G2LEgp3, G2LE) - /* PowerPC MPC603 microcontrollers */ - /* MPC8240 */ - POWERPC_DEF("MPC8240", CPU_POWERPC_MPC8240, 603E) /* PowerPC G2 microcontrollers */ #if defined(TODO) /* MPC5121 */ @@ -8852,6 +8847,9 @@ static const PowerPCCPUAlias ppc_cpu_aliases[] = { { "MPC880", "MPC8xx" }, { "MPC885", "MPC8xx" }, + /* PowerPC MPC603 microcontrollers */ + { "MPC8240", "603" }, + { "MPC52xx", "MPC5200" }, { "MPC5200", "MPC5200_v12" }, { "MPC5200B", "MPC5200B_v21" },