Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/src/endpoint.c

    ra76b01b4 r17412546  
    7272        return instance;
    7373}
    74 
     74/*----------------------------------------------------------------------------*/
    7575/** Properly dispose of endpoint_t structure.
    7676 * @param instance endpoint_t structure.
     
    8484        free(instance);
    8585}
    86 
     86/*----------------------------------------------------------------------------*/
    8787/** Set device specific data and hooks.
    8888 * @param instance endpoint_t structure.
     
    101101        fibril_mutex_unlock(&instance->guard);
    102102}
    103 
     103/*----------------------------------------------------------------------------*/
    104104/** Clear device specific data and hooks.
    105105 * @param instance endpoint_t structure.
     
    115115        fibril_mutex_unlock(&instance->guard);
    116116}
    117 
     117/*----------------------------------------------------------------------------*/
    118118/** Mark the endpoint as active and block access for further fibrils.
    119119 * @param instance endpoint_t structure.
     
    128128        fibril_mutex_unlock(&instance->guard);
    129129}
    130 
     130/*----------------------------------------------------------------------------*/
    131131/** Mark the endpoint as inactive and allow access for further fibrils.
    132132 * @param instance endpoint_t structure.
     
    140140        fibril_condvar_signal(&instance->avail);
    141141}
    142 
     142/*----------------------------------------------------------------------------*/
    143143/** Get the value of toggle bit.
    144144 * @param instance endpoint_t structure.
     
    156156        return ret;
    157157}
    158 
     158/*----------------------------------------------------------------------------*/
    159159/** Set the value of toggle bit.
    160160 * @param instance endpoint_t structure.
Note: See TracChangeset for help on using the changeset viewer.