Changeset db71e2a in mainline for uspace/lib/usb
- Timestamp:
 - 2013-07-24T17:42:25Z (12 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 69b264a9
 - Parents:
 - 52f1882 (diff), cffa14e6 (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. - Location:
 - uspace/lib/usb/src
 - Files:
 - 
      
- 2 edited
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/usb/src/debug.c
r52f1882 rdb71e2a 84 84 * Remove previous string. 85 85 */ 86 bzero(buffer_dump[buffer_dump_index], BUFFER_DUMP_LEN);86 memset(buffer_dump[buffer_dump_index], 0, BUFFER_DUMP_LEN); 87 87 88 88 /* Do the actual dump. */  - 
      
uspace/lib/usb/src/dev.c
r52f1882 rdb71e2a 38 38 39 39 static bool try_parse_bus_and_address(const char *path, 40 c har **func_start,40 const char **func_start, 41 41 devman_handle_t *out_hc_handle, usb_address_t *out_device_address) 42 42 { … … 44 44 size_t address; 45 45 int rc; 46 c har *ptr;46 const char *ptr; 47 47 48 48 rc = str_uint64_t(path, &ptr, 10, false, &sid); … … 108 108 usb_address_t addr = -1; 109 109 int rc; 110 c har *func_start = NULL;110 const char *func_start = NULL; 111 111 char *path = NULL; 112 112  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  