Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/pipes.c

    ra76b01b4 r01086cfe  
    5454        return usb_hc_connection_open(pipe->wire->hc_connection);
    5555}
    56 
     56/*----------------------------------------------------------------------------*/
    5757/** Terminate a long transfer on a pipe.
    5858 * @param pipe Pipe where to end the long transfer.
     
    6767        return usb_hc_connection_close(pipe->wire->hc_connection);
    6868}
    69 
     69/*----------------------------------------------------------------------------*/
    7070/** Try to clear endpoint halt of default control pipe.
    7171 *
     
    8585        pipe->auto_reset_halt = true;
    8686}
    87 
     87/*----------------------------------------------------------------------------*/
    8888/** Request a control read transfer on an endpoint pipe.
    8989 *
     
    135135        return rc;
    136136}
    137 
     137/*----------------------------------------------------------------------------*/
    138138/** Request a control write transfer on an endpoint pipe.
    139139 *
     
    182182        return rc;
    183183}
    184 
     184/*----------------------------------------------------------------------------*/
    185185/** Request a read (in) transfer on an endpoint pipe.
    186186 *
     
    227227        return rc;
    228228}
    229 
     229/*----------------------------------------------------------------------------*/
    230230/** Request a write (out) transfer on an endpoint pipe.
    231231 *
     
    259259            pipe->endpoint_no, buffer, size);
    260260}
    261 
     261/*----------------------------------------------------------------------------*/
    262262/** Initialize USB endpoint pipe.
    263263 *
     
    287287        return EOK;
    288288}
    289 
     289/*----------------------------------------------------------------------------*/
    290290/** Initialize USB endpoint pipe as the default zero control pipe.
    291291 *
     
    307307        return rc;
    308308}
    309 
     309/*----------------------------------------------------------------------------*/
    310310/** Register endpoint with the host controller.
    311311 *
     
    323323           pipe->direction, pipe->max_packet_size, interval);
    324324}
    325 
     325/*----------------------------------------------------------------------------*/
    326326/** Revert endpoint registration with the host controller.
    327327 *
Note: See TracChangeset for help on using the changeset viewer.