From fcd79325e15807890a9436a63cff90382d8874b2 Mon Sep 17 00:00:00 2001 From: Jason Chen CJ Date: Tue, 22 May 2018 09:06:49 +0800 Subject: [PATCH] doxygen: fix wrong description in hypercall.h fix wrong description for hcall_get_cpu_pm_state/hcall_world_switch Signed-off-by: Jason Chen CJ --- hypervisor/include/common/hypercall.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/hypervisor/include/common/hypercall.h b/hypervisor/include/common/hypercall.h index da40a6d2c..2965ff380 100644 --- a/hypervisor/include/common/hypercall.h +++ b/hypervisor/include/common/hypercall.h @@ -335,19 +335,21 @@ int64_t hcall_reset_ptdev_intr_info(struct vm *vm, uint64_t vmid, int64_t hcall_setup_sbuf(struct vm *vm, uint64_t param); /** - * @brief Switch VCPU state between Normal/Secure World. + * @brief Get VCPU Power state. * - * @param vcpu Pointer to VCPU data structure + * @param cmd cmd to show get which VCPU power state data + * @param param VCPU power state data * * @return 0 on success, non-zero on error. */ int64_t hcall_get_cpu_pm_state(struct vm *vm, uint64_t cmd, uint64_t param); + /** - * @brief Get VCPU Power state. + * @brief Switch VCPU state between Normal/Secure World. * - * @param VCPU power state data + * @param vcpu Pointer to VCPU data structure * * @return 0 on success, non-zero on error. */