HV: remove unused function shutdown_vcpu

Change-Id: Ia6f9aa4d2d603d23bc0cb9c3b12032d1a96504db
Tracked-On: #3123
Signed-off-by: yliu79 <ying2.liu@intel.com>
Reviewed-by: Yin Fengwei <fengwei.yin@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
yliu79 2019-05-17 14:41:32 -07:00 committed by ACRN System Integration
parent 83012a5a0a
commit c68c6e4af2
2 changed files with 0 additions and 9 deletions

View File

@ -529,13 +529,6 @@ int32_t run_vcpu(struct acrn_vcpu *vcpu)
return status;
}
int32_t shutdown_vcpu(__unused struct acrn_vcpu *vcpu)
{
/* TODO : Implement VCPU shutdown sequence */
return 0;
}
/*
* @pre vcpu != NULL
*/

View File

@ -617,8 +617,6 @@ int32_t create_vcpu(uint16_t pcpu_id, struct acrn_vm *vm, struct acrn_vcpu **rtn
*/
int32_t run_vcpu(struct acrn_vcpu *vcpu);
int32_t shutdown_vcpu(struct acrn_vcpu *vcpu);
/**
* @brief unmap the vcpu with pcpu and free its vlapic
*