Changes in uspace/lib/usbdev/src/dp.c [3e6a98c5:c01987c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbdev/src/dp.c
r3e6a98c5 rc01987c 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.