VirtualBox

Ignore:
Timestamp:
Dec 16, 2015 3:06:06 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
104738
Message:

solaris/USB: Get rid of EpState member which is never used only set.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/VBoxUSB/solaris/VBoxUSB-solaris.c

    r59091 r59154  
    6161/** The module description as seen in 'modinfo'. */
    6262#define DEVICE_DESC_DRV                                 "VirtualBox USB"
    63 
    64 /** Endpoint states. */
    65 #define VBOXUSB_EP_INITIALIZED                          0xa1fa1fa
    66 #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)
    6963
    7064/** -=-=-=-=-=-=- Standard Specifics -=-=-=-=-=-=- */
     
    193187{
    194188    bool                    fInitialized;        /* Whether this Endpoint is initialized */
    195     uint_t                  EpState;             /* Endpoint state */
    196189    usb_ep_descr_t          EpDesc;              /* Endpoint descriptor */
    197190    usb_pipe_handle_t       pPipe;               /* Endpoint pipe handle */
     
    24292422    {
    24302423        pEp->pPipe = NULL;
    2431         pEp->EpState = VBOXUSB_EP_STATE_CLOSED;
    24322424        bzero(&pEp->PipePolicy, sizeof(pEp->PipePolicy));
    24332425        pEp->PipePolicy.pp_max_async_reqs = VBOXUSB_MAX_PIPE_ASYNC_REQS;
     
    26762668    {
    26772669        pEp->pPipe = pState->pDevDesc->dev_default_ph;
    2678         pEp->EpState |= VBOXUSB_EP_STATE_OPENED;
    26792670        Log((DEVICE_NAME ": vboxUsbSolarisOpenPipe: Default pipe opened\n"));
    26802671        return VINF_SUCCESS;
     
    27182709        }
    27192710
    2720         pEp->EpState |= VBOXUSB_EP_STATE_OPENED;
    27212711        rc = VINF_SUCCESS;
    27222712    }
     
    27462736    if (pEp->pPipe)
    27472737    {
    2748         pEp->EpState &= ~(VBOXUSB_EP_STATE_OPENED);
    2749 
    27502738        /*
    27512739         * Default pipe: allow completion of pending requests.
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette