From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48388) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UE3aN-00007Z-OS for qemu-devel@nongnu.org; Fri, 08 Mar 2013 15:08:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UE3a7-0000Yj-5A for qemu-devel@nongnu.org; Fri, 08 Mar 2013 15:08:11 -0500 From: Alexander Graf Date: Fri, 8 Mar 2013 21:06:31 +0100 Message-Id: <1362773228-1747-30-git-send-email-agraf@suse.de> 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 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 29/66] target-ppc: Extract e500v1/e500v2 aliases List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel qemu-devel Cc: Blue Swirl , "qemu-ppc@nongnu.org list:PowerPC" , =?utf-8?q?Andreas=20F=C3=A4rber?= , =?utf-8?q?Aur=C3=A9lien=20Jarno?= From: Andreas F=C3=A4rber Signed-off-by: Andreas F=C3=A4rber Signed-off-by: Alexander Graf --- target-ppc/translate_init.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 9939af5..91473dc 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -7134,8 +7134,6 @@ enum { /* e500 family */ /* e500 cores */ #define CPU_POWERPC_e500 CPU_POWERPC_e500v2_v22 -#define CPU_POWERPC_e500v1 CPU_POWERPC_e500v1_v20 -#define CPU_POWERPC_e500v2 CPU_POWERPC_e500v2_v22 CPU_POWERPC_e500v1_v10 =3D 0x80200010, CPU_POWERPC_e500v1_v20 =3D 0x80200020, CPU_POWERPC_e500v2_v10 =3D 0x80210010, @@ -8316,14 +8314,10 @@ static const ppc_def_t ppc_defs[] =3D { POWERPC_DEF_SVR("MPC8379E", CPU_POWERPC_MPC837x, POWERPC_SVR_8379E, e30= 0) /* e500 family = */ - /* PowerPC e500v1 core = */ - POWERPC_DEF("e500v1", CPU_POWERPC_e500v1, e50= 0v1) /* PowerPC e500 v1.0 core = */ POWERPC_DEF("e500_v10", CPU_POWERPC_e500v1_v10, e50= 0v1) /* PowerPC e500 v2.0 core = */ POWERPC_DEF("e500_v20", CPU_POWERPC_e500v1_v20, e50= 0v1) - /* PowerPC e500v2 core = */ - POWERPC_DEF("e500v2", CPU_POWERPC_e500v2, e50= 0v2) /* PowerPC e500v2 v1.0 core = */ POWERPC_DEF("e500v2_v10", CPU_POWERPC_e500v2_v10, e50= 0v2) /* PowerPC e500v2 v2.0 core = */ @@ -8981,6 +8975,8 @@ static const PowerPCCPUAlias ppc_cpu_aliases[] =3D = { =20 { "PowerQUICC-II", "MPC82xx" }, { "e500", "e500v2_v22" }, + { "e500v1", "e500_v20" }, + { "e500v2", "e500v2_v22" }, { "MPC8533", "MPC8533_v11" }, { "MPC8533E", "MPC8533E_v11" }, { "MPC8540", "MPC8540_v21" }, --=20 1.6.0.2