Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/host/endpoint.c

    r8b4ce802 rd32ed36  
    5353        fibril_mutex_initialize(&instance->guard);
    5454        fibril_condvar_initialize(&instance->avail);
    55         endpoint_clear_hc_data(instance);
    5655        return EOK;
    5756}
     
    6261        assert(!instance->active);
    6362        free(instance);
    64 }
    65 /*----------------------------------------------------------------------------*/
    66 void endpoint_set_hc_data(endpoint_t *instance,
    67     void *data, int (*toggle_get)(void *), void (*toggle_set)(void *, int))
    68 {
    69         assert(instance);
    70         instance->hc_data.data = data;
    71         instance->hc_data.toggle_get = toggle_get;
    72         instance->hc_data.toggle_set = toggle_set;
    73 }
    74 /*----------------------------------------------------------------------------*/
    75 void endpoint_clear_hc_data(endpoint_t *instance)
    76 {
    77         assert(instance);
    78         instance->hc_data.data = NULL;
    79         instance->hc_data.toggle_get = NULL;
    80         instance->hc_data.toggle_set = NULL;
    8163}
    8264/*----------------------------------------------------------------------------*/
     
    10385{
    10486        assert(instance);
    105         if (instance->hc_data.toggle_get)
    106                 instance->toggle =
    107                     instance->hc_data.toggle_get(instance->hc_data.data);
    10887        return (int)instance->toggle;
    10988}
     
    11392        assert(instance);
    11493        assert(toggle == 0 || toggle == 1);
    115         if (instance->hc_data.toggle_set)
    116                 instance->hc_data.toggle_set(instance->hc_data.data, toggle);
    11794        instance->toggle = toggle;
    11895}
Note: See TracChangeset for help on using the changeset viewer.