mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-06-08 01:54:44 +00:00
DM USB: xHCI: Support control transfer for USB port mapper.
This patch implements the control transfer for port mapper. With this patch, USB2.0 device can be enumerated successfully in user OS. Change-Id: I567bd00ca310d68375acd94a5cc5bcd287665df1 Signed-off-by: Wu, Xiaoguang <xiaoguang.wu@intel.com> Reviewed-by: Shuo Liu <shuo.a.liu@intel.com> Reviewed-by: Yu Wang <yu1.wang@intel.com> Reviewed-by: Zhao Yakui <yakui.zhao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
@@ -427,10 +427,10 @@ pci_xhci_dev_create(struct pci_xhci_vdev *xdev, void *dev_data)
|
||||
|
||||
/* TODO: following function pointers will be populated in future */
|
||||
ue->ue_init = usb_dev_init;
|
||||
ue->ue_request = NULL;
|
||||
ue->ue_request = usb_dev_request;
|
||||
ue->ue_data = NULL;
|
||||
ue->ue_info = usb_dev_info;
|
||||
ue->ue_reset = NULL;
|
||||
ue->ue_reset = usb_dev_reset;
|
||||
ue->ue_remove = NULL;
|
||||
ue->ue_stop = NULL;
|
||||
ue->ue_deinit = usb_dev_deinit;
|
||||
|
||||
Reference in New Issue
Block a user