Changeset 00aece0 in mainline for uspace/drv/bus/usb/ohci/endpoint_list.h
- Timestamp:
- 2012-02-18T16:47:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4449c6c
- Parents:
- bd5f3b7 (diff), f943dd3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/endpoint_list.h
rbd5f3b7 r00aece0 37 37 #include <fibril_synch.h> 38 38 39 #include " hcd_endpoint.h"39 #include "ohci_endpoint.h" 40 40 #include "hw_struct/endpoint_descriptor.h" 41 41 #include "utils/malloc32.h" … … 68 68 69 69 int endpoint_list_init(endpoint_list_t *instance, const char *name); 70 void endpoint_list_set_next(endpoint_list_t *instance, endpoint_list_t *next); 71 void endpoint_list_add_ep(endpoint_list_t *instance, hcd_endpoint_t *hcd_ep); 72 void endpoint_list_remove_ep(endpoint_list_t *instance, hcd_endpoint_t *hcd_ep); 70 void endpoint_list_set_next( 71 const endpoint_list_t *instance, const endpoint_list_t *next); 72 void endpoint_list_add_ep(endpoint_list_t *instance, ohci_endpoint_t *ep); 73 void endpoint_list_remove_ep(endpoint_list_t *instance, ohci_endpoint_t *ep); 73 74 #endif 74 75 /**
Note:
See TracChangeset
for help on using the changeset viewer.