From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53475) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRoDw-0004zd-0q for qemu-devel@nongnu.org; Tue, 08 May 2012 13:29:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SRoDt-00014E-Uz for qemu-devel@nongnu.org; Tue, 08 May 2012 13:29:19 -0400 Received: from mail-ob0-f173.google.com ([209.85.214.173]:36602) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRoDt-00011N-PW for qemu-devel@nongnu.org; Tue, 08 May 2012 13:29:17 -0400 Received: by obbwd20 with SMTP id wd20so12116014obb.4 for ; Tue, 08 May 2012 10:29:16 -0700 (PDT) Message-ID: <4FA957E9.9040308@codemonkey.ws> Date: Tue, 08 May 2012 12:29:13 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1335990538-20025-1-git-send-email-afaerber@suse.de> In-Reply-To: <1335990538-20025-1-git-send-email-afaerber@suse.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH for-1.1] cpu: Update documentation and comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org On 05/02/2012 03:28 PM, Andreas Färber wrote: > State struct CPU had been renamed to CPUState, former CPUState to > CPUArchState. > > Signed-off-by: Andreas Färber Applied. Thanks. Regards, Anthony Liguori > --- > include/qemu/cpu.h | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h > index 4291279..78b65b3 100644 > --- a/include/qemu/cpu.h > +++ b/include/qemu/cpu.h > @@ -39,7 +39,7 @@ typedef struct CPUState CPUState; > > /** > * CPUClass: > - * @reset: Callback to reset the #CPU to its initial state. > + * @reset: Callback to reset the #CPUState to its initial state. > * > * Represents a CPU family or model. > */ > @@ -61,7 +61,7 @@ struct CPUState { > Object parent_obj; > /*< public>*/ > > - /* TODO Move common fields from CPUState here. */ > + /* TODO Move common fields from CPUArchState here. */ > }; > >