Changes in uspace/lib/usb/src/dump.c [a6add7a:0d36c20] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/dump.c
ra6add7a r0d36c20 31 31 */ 32 32 /** @file 33 * Descriptor dumping.33 * @brief Descriptor dumping. 34 34 */ 35 35 #include <adt/list.h> … … 43 43 #include <usb/classes/hid.h> 44 44 45 /** Mapping between descriptor id and dumping function. */46 45 typedef struct { 47 /** Descriptor id. */48 46 int id; 49 /** Dumping function. */50 47 void (*dump)(FILE *, const char *, const char *, 51 48 const uint8_t *, size_t); … … 69 66 const uint8_t *, size_t); 70 67 71 /** Descriptor dumpers mapping. */72 68 static descriptor_dump_t descriptor_dumpers[] = { 73 69 { USB_DESCTYPE_DEVICE, usb_dump_descriptor_device }, … … 277 273 const uint8_t *descriptor, size_t descriptor_length) 278 274 { 279 /* TODO */280 275 } 281 276 … … 284 279 const uint8_t *descriptor, size_t descriptor_length) 285 280 { 286 /* TODO */287 281 } 288 282
Note:
See TracChangeset
for help on using the changeset viewer.