Re: [Qemu-devel] [PATCH] target/arm: fix code comments error

2018-10-02 Thread Peter Maydell
On 27 September 2018 at 18:24, Dongjiu Geng wrote: > The parameter of kvm_arm_init_cpreg_list() is ARMCPU instead of > CPUState, so correct the note to make it match the code. > > Signed-off-by: Dongjiu Geng Applied to target-arm.next, thanks. -- PMM

[Qemu-devel] [PATCH] target/arm: fix code comments error

2018-09-27 Thread Dongjiu Geng
The parameter of kvm_arm_init_cpreg_list() is ARMCPU instead of CPUState, so correct the note to make it match the code. Signed-off-by: Dongjiu Geng --- target/arm/kvm.c | 2 +- target/arm/kvm_arm.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/target/arm/kvm.c b/t