Changeset 534dee89 in mainline for uspace/lib/usb/src
- Timestamp:
- 2013-09-28T16:50:13Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c01987c
- Parents:
- 026271d5
- Location:
- uspace/lib/usb/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/class.c
r026271d5 r534dee89 34 34 */ 35 35 #include <usb/classes/classes.h> 36 #include <errno.h>37 36 38 37 /** Tell string representation of USB class. -
uspace/lib/usb/src/debug.c
r026271d5 r534dee89 33 33 * Debugging and logging support. 34 34 */ 35 #include <adt/list.h>36 35 #include <fibril_synch.h> 37 #include <errno.h>38 #include <stdlib.h>39 #include <stdio.h>40 36 #include <ddf/log.h> 41 37 #include <usb/debug.h> -
uspace/lib/usb/src/dump.c
r026271d5 r534dee89 33 33 * Descriptor dumping. 34 34 */ 35 #include <adt/list.h>36 #include <fibril_synch.h>37 #include <errno.h>38 35 #include <stdlib.h> 39 36 #include <stdio.h> … … 42 39 #include <usb/classes/classes.h> 43 40 #include <usb/classes/hub.h> 41 #include <usb/usb.h> 44 42 45 43 /** Mapping between descriptor id and dumping function. */ -
uspace/lib/usb/src/usb.c
r026271d5 r534dee89 36 36 #include <usb/request.h> 37 37 38 #include <errno.h>39 38 #include <assert.h> 39 #include <byteorder.h> 40 40 #include <macros.h> 41 41
Note:
See TracChangeset
for help on using the changeset viewer.