hv: remove 'flags' field in struct vm_io_range

Currently, 'flags' is defined and set but never be used
  in the flow of handling i/o request after then.

Tracked-On: #861
Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
Yonghua Huang
2019-08-16 14:29:55 +08:00
committed by ACRN System Integration
parent eab4e42e7b
commit 700a37856f
7 changed files with 1 additions and 16 deletions

View File

@@ -193,13 +193,11 @@ static bool pci_cfgdata_io_write(struct acrn_vcpu *vcpu, uint16_t addr, size_t b
void vpci_init(struct acrn_vm *vm)
{
struct vm_io_range pci_cfgaddr_range = {
.flags = IO_ATTR_RW,
.base = PCI_CONFIG_ADDR,
.len = 1U
};
struct vm_io_range pci_cfgdata_range = {
.flags = IO_ATTR_RW,
.base = PCI_CONFIG_DATA,
.len = 4U
};

View File

@@ -881,17 +881,14 @@ static bool vpic_elc_io_write(struct acrn_vcpu *vcpu, uint16_t addr, size_t widt
static void vpic_register_io_handler(struct acrn_vm *vm)
{
struct vm_io_range master_range = {
.flags = IO_ATTR_RW,
.base = 0x20U,
.len = 2U
};
struct vm_io_range slave_range = {
.flags = IO_ATTR_RW,
.base = 0xa0U,
.len = 2U
};
struct vm_io_range elcr_range = {
.flags = IO_ATTR_RW,
.base = 0x4d0U,
.len = 2U
};

View File

@@ -82,7 +82,7 @@ static bool vrtc_write(struct acrn_vcpu *vcpu, uint16_t addr, size_t width,
void vrtc_init(struct acrn_vm *vm)
{
struct vm_io_range range = {
.flags = IO_ATTR_RW, .base = CMOS_ADDR_PORT, .len = 2U};
.base = CMOS_ADDR_PORT, .len = 2U};
/* Initializing the CMOS RAM offset to 0U */
vm->vrtc_offset = 0U;

View File

@@ -468,7 +468,6 @@ static bool vuart_register_io_handler(struct acrn_vm *vm, uint16_t port_base, ui
bool ret = true;
struct vm_io_range range = {
.flags = IO_ATTR_RW,
.base = port_base,
.len = 8U
};