From: Andreas Färber Date: Wed, 2 May 2012 20:28:58 +0000 (+0200) Subject: cpu: Update documentation and comment X-Git-Tag: v1.1-rc1~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5df5baf11a32ae6a669ac945625d1c3e4deb76d;p=thirdparty%2Fqemu.git cpu: Update documentation and comment State struct CPU had been renamed to CPUState, former CPUState to CPUArchState. Signed-off-by: Andreas Färber Signed-off-by: Anthony Liguori --- diff --git a/include/qemu/cpu.h b/include/qemu/cpu.h index 4291279bc5f..78b65b35fcc 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. */ };