From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:41438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rup8H-00050S-Es for qemu-devel@nongnu.org; Tue, 07 Feb 2012 12:47:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rup8B-0007VO-FK for qemu-devel@nongnu.org; Tue, 07 Feb 2012 12:47:09 -0500 Received: from mail-qy0-f173.google.com ([209.85.216.173]:46469) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rup8B-0007VH-Cv for qemu-devel@nongnu.org; Tue, 07 Feb 2012 12:47:03 -0500 Received: by qcsc20 with SMTP id c20so4459461qcs.4 for ; Tue, 07 Feb 2012 09:47:02 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1328237992-14953-14-git-send-email-afaerber@suse.de> References: <1328237992-14953-1-git-send-email-afaerber@suse.de> <1328237992-14953-14-git-send-email-afaerber@suse.de> Date: Tue, 7 Feb 2012 17:47:02 +0000 Message-ID: From: Peter Maydell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH RFC v3 13/21] target-arm: Store JTAG_ID in ARMCPUClass List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Andreas_F=C3=A4rber?= Cc: qemu-devel@nongnu.org On 3 February 2012 02:59, Andreas F=C3=A4rber wrote: > That way we can remove some more CPUID cases without losing info. > > Signed-off-by: Andreas F=C3=A4rber > Cc: Peter Maydell > Cc: Andrzej Zaborowski > --- > =C2=A0target-arm/cpu-core.h | =C2=A0 =C2=A01 + > =C2=A0target-arm/cpu.c =C2=A0 =C2=A0 =C2=A0| =C2=A0 =C2=A02 ++ > =C2=A0target-arm/cpu.h =C2=A0 =C2=A0 =C2=A0| =C2=A0 =C2=A05 ----- > =C2=A0target-arm/helper.c =C2=A0 | =C2=A0 =C2=A08 -------- > =C2=A04 files changed, 3 insertions(+), 13 deletions(-) > > diff --git a/target-arm/cpu-core.h b/target-arm/cpu-core.h > index 3e7dfae..eac1a03 100644 > --- a/target-arm/cpu-core.h > +++ b/target-arm/cpu-core.h > @@ -48,6 +48,7 @@ typedef struct ARMCPUClass { > =C2=A0 =C2=A0 =C2=A0 =C2=A0 uint32_t c0_c2[8]; > =C2=A0 =C2=A0 =C2=A0 =C2=A0 uint32_t c1_sys; > =C2=A0 =C2=A0 } cp15; > + =C2=A0 =C2=A0uint64_t jtag_id; If we're not using this anywhere we should just not have it. -- PMM