Changeset b4b534ac in mainline for uspace/lib/usbdev/src/dp.c
- Timestamp:
- 2016-07-22T08:24:47Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f76d2c2
- Parents:
- 5b18137 (diff), 8351f9a4 (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/lib/usbdev/src/dp.c
r5b18137 rb4b534ac 41 41 * sibling. 42 42 */ 43 #include <stdio.h>44 #include <str_error.h>45 #include <errno.h>46 #include <assert.h>47 #include <stdbool.h>48 43 #include <usb/dev/dp.h> 49 44 #include <usb/descriptor.h> 45 46 #include <assert.h> 47 #include <errno.h> 48 #include <stdlib.h> 49 #include <stdbool.h> 50 #include <sys/types.h> 50 51 51 52 #define NESTING(parentname, childname) \ … … 304 305 * @param arg Custom (user) argument. 305 306 */ 306 void usb_dp_walk_simple( uint8_t *descriptors, size_t descriptors_size,307 void usb_dp_walk_simple(const uint8_t *descriptors, size_t descriptors_size, 307 308 const usb_dp_descriptor_nesting_t *descriptor_nesting, 308 309 walk_callback_t callback, void *arg)
Note:
See TracChangeset
for help on using the changeset viewer.