Changeset 59154 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB
- Timestamp:
- Dec 16, 2015 3:06:06 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/solaris/VBoxUSB-solaris.c
r59091 r59154 61 61 /** The module description as seen in 'modinfo'. */ 62 62 #define DEVICE_DESC_DRV "VirtualBox USB" 63 64 /** Endpoint states. */65 #define VBOXUSB_EP_INITIALIZED 0xa1fa1fa66 #define VBOXUSB_EP_STATE_NONE RT_BIT(0)67 #define VBOXUSB_EP_STATE_CLOSED RT_BIT(1)68 #define VBOXUSB_EP_STATE_OPENED RT_BIT(2)69 63 70 64 /** -=-=-=-=-=-=- Standard Specifics -=-=-=-=-=-=- */ … … 193 187 { 194 188 bool fInitialized; /* Whether this Endpoint is initialized */ 195 uint_t EpState; /* Endpoint state */196 189 usb_ep_descr_t EpDesc; /* Endpoint descriptor */ 197 190 usb_pipe_handle_t pPipe; /* Endpoint pipe handle */ … … 2429 2422 { 2430 2423 pEp->pPipe = NULL; 2431 pEp->EpState = VBOXUSB_EP_STATE_CLOSED;2432 2424 bzero(&pEp->PipePolicy, sizeof(pEp->PipePolicy)); 2433 2425 pEp->PipePolicy.pp_max_async_reqs = VBOXUSB_MAX_PIPE_ASYNC_REQS; … … 2676 2668 { 2677 2669 pEp->pPipe = pState->pDevDesc->dev_default_ph; 2678 pEp->EpState |= VBOXUSB_EP_STATE_OPENED;2679 2670 Log((DEVICE_NAME ": vboxUsbSolarisOpenPipe: Default pipe opened\n")); 2680 2671 return VINF_SUCCESS; … … 2718 2709 } 2719 2710 2720 pEp->EpState |= VBOXUSB_EP_STATE_OPENED;2721 2711 rc = VINF_SUCCESS; 2722 2712 } … … 2746 2736 if (pEp->pPipe) 2747 2737 { 2748 pEp->EpState &= ~(VBOXUSB_EP_STATE_OPENED);2749 2750 2738 /* 2751 2739 * Default pipe: allow completion of pending requests.
Note:
See TracChangeset
for help on using the changeset viewer.