Changes in uspace/drv/bus/usb/ohci/endpoint_list.c [57e06ef:e20eaed] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/endpoint_list.c
r57e06ef re20eaed 60 60 name, instance->list_head, instance->list_head_pa); 61 61 62 ed_init(instance->list_head, NULL , NULL);62 ed_init(instance->list_head, NULL); 63 63 list_initialize(&instance->endpoint_list); 64 64 fibril_mutex_initialize(&instance->guard); … … 73 73 * Does not check whether this replaces an existing list. 74 74 */ 75 void endpoint_list_set_next( 76 const endpoint_list_t *instance, const endpoint_list_t *next) 75 void endpoint_list_set_next(endpoint_list_t *instance, endpoint_list_t *next) 77 76 { 78 77 assert(instance);
Note:
See TracChangeset
for help on using the changeset viewer.