mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-07 20:00:13 +00:00
hv: use int32_t replace int
Since it's typedef in "include/lib/types.h" Tracked-On: #861 Signed-off-by: Li, Fei1 <fei1.li@intel.com>
This commit is contained in:
@@ -536,13 +536,13 @@ vioapic_pincount(const struct acrn_vm *vm)
|
||||
return ret;
|
||||
}
|
||||
|
||||
int vioapic_mmio_access_handler(struct io_request *io_req, void *handler_private_data)
|
||||
int32_t vioapic_mmio_access_handler(struct io_request *io_req, void *handler_private_data)
|
||||
{
|
||||
struct acrn_vm *vm = (struct acrn_vm *)handler_private_data;
|
||||
struct acrn_vioapic *vioapic;
|
||||
struct mmio_request *mmio = &io_req->reqs.mmio;
|
||||
uint64_t gpa = mmio->address;
|
||||
int ret = 0;
|
||||
int32_t ret = 0;
|
||||
|
||||
vioapic = vm_ioapic(vm);
|
||||
|
||||
|
Reference in New Issue
Block a user