From: Andreas Färber Date: Sun, 17 Feb 2013 23:16:00 +0000 (+0000) Subject: target-ppc: Fix "G2leGP3" PVR X-Git-Tag: v1.4.1~57 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80d8b5da48c29bfb086254a6caf87a432f63d130;p=thirdparty%2Fqemu.git target-ppc: Fix "G2leGP3" PVR Unlike derived PVR constants mapped to CPU_POWERPC_G2LEgp3, the "G2leGP3" model definition itself used the CPU_POWERPC_G2LEgp1 PVR. Fixing this will allow to alias CPU_POWERPC_G2LEgp3-using types to "G2leGP3". Signed-off-by: Andreas Färber Signed-off-by: Alexander Graf (cherry picked from commit bfe6d5b0daf9fdafeb0dbb7c26774dbb1bbb4507) Signed-off-by: Michael Roth --- diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c index 6cebaa19827..63e6fdcafc0 100644 --- a/target-ppc/translate_init.c +++ b/target-ppc/translate_init.c @@ -8243,7 +8243,7 @@ static const ppc_def_t ppc_defs[] = { /* PowerPC G2LE GP1 core */ POWERPC_DEF("G2leGP1", CPU_POWERPC_G2LEgp1, G2LE), /* PowerPC G2LE GP3 core */ - POWERPC_DEF("G2leGP3", CPU_POWERPC_G2LEgp1, G2LE), + POWERPC_DEF("G2leGP3", CPU_POWERPC_G2LEgp3, G2LE), /* PowerPC MPC603 microcontrollers */ /* MPC8240 */ POWERPC_DEF("MPC8240", CPU_POWERPC_MPC8240, 603E),