mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-29 10:24:50 +00:00
DM USB: xHCI: code cleanup: change variable name
Replace 'native_assign_ports' with 'port_map_tbl' to be more accurate for the role of this variable plays. Signed-off-by: Xiaoguang Wu <xiaoguang.wu@intel.com> Reviewed-by: Liang Yang <liang3.yang@intel.com> Acked-by: Yu Wang <yu1.wang@intel.com>
This commit is contained in:
parent
27eeea4cd3
commit
b359dc361a
@ -373,7 +373,7 @@ struct pci_xhci_vdev {
|
|||||||
int (*excap_write)(struct pci_xhci_vdev *, uint64_t, uint64_t);
|
int (*excap_write)(struct pci_xhci_vdev *, uint64_t, uint64_t);
|
||||||
int usb2_port_start;
|
int usb2_port_start;
|
||||||
int usb3_port_start;
|
int usb3_port_start;
|
||||||
uint8_t native_assign_ports[USB_NATIVE_NUM_BUS][USB_NATIVE_NUM_PORT];
|
uint8_t port_map_tbl[USB_NATIVE_NUM_BUS][USB_NATIVE_NUM_PORT];
|
||||||
struct timespec mf_prev_time; /* previous time of accessing MFINDEX */
|
struct timespec mf_prev_time; /* previous time of accessing MFINDEX */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -504,7 +504,7 @@ pci_xhci_native_usb_dev_conn_cb(void *hci_data, void *dev_data)
|
|||||||
UPRINTF(LDBG, "%04x:%04x %d-%d connecting.\r\n",
|
UPRINTF(LDBG, "%04x:%04x %d-%d connecting.\r\n",
|
||||||
di->vid, di->pid, di->bus, di->port);
|
di->vid, di->pid, di->bus, di->port);
|
||||||
|
|
||||||
if (xdev->native_assign_ports[di->bus][di->port] == VPORT_FREE) {
|
if (xdev->port_map_tbl[di->bus][di->port] == VPORT_FREE) {
|
||||||
UPRINTF(LDBG, "%04x:%04x %d-%d doesn't belong to this vm, bye."
|
UPRINTF(LDBG, "%04x:%04x %d-%d doesn't belong to this vm, bye."
|
||||||
"\r\n", di->vid, di->pid, di->bus, di->port);
|
"\r\n", di->vid, di->pid, di->bus, di->port);
|
||||||
goto errout;
|
goto errout;
|
||||||
@ -3364,7 +3364,7 @@ pci_xhci_parse_bus_port(struct pci_xhci_vdev *xdev, char *opts)
|
|||||||
goto errout;
|
goto errout;
|
||||||
}
|
}
|
||||||
|
|
||||||
xdev->native_assign_ports[bus][port] = VPORT_ASSIGNED;
|
xdev->port_map_tbl[bus][port] = VPORT_ASSIGNED;
|
||||||
errout:
|
errout:
|
||||||
if (rc)
|
if (rc)
|
||||||
UPRINTF(LWRN, "%s fails, rc=%d\r\n", __func__, rc);
|
UPRINTF(LWRN, "%s fails, rc=%d\r\n", __func__, rc);
|
||||||
|
Loading…
Reference in New Issue
Block a user