Changeset 86ffa27f in mainline for uspace/drv/bus/usb/uhci/root_hub.c
- Timestamp:
- 2011-08-07T11:21:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc574511
- Parents:
- 15f3c3f (diff), e8067c0 (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/drv/bus/usb/uhci/root_hub.c
r15f3c3f r86ffa27f 50 50 int rh_init(rh_t *instance, ddf_fun_t *fun, uintptr_t reg_addr, size_t reg_size) 51 51 { 52 int ret; 53 52 54 assert(fun); 53 55 54 char *match_str = NULL; 55 int ret = asprintf(&match_str, "usb&uhci&root-hub"); 56 if (ret < 0) { 57 usb_log_error( 58 "Failed(%d) to create root hub match string: %s.\n", 59 ret, str_error(ret)); 60 return ret; 61 } 62 assert(match_str); 63 64 ret = ddf_fun_add_match_id(fun, match_str, 100); 56 ret = ddf_fun_add_match_id(fun, "usb&uhci&root-hub", 100); 65 57 if (ret != EOK) { 66 free(match_str); 67 usb_log_error("Failed(%d) to add root hub match id: %s\n", 68 ret, str_error(ret)); 58 usb_log_error("Failed to add root hub match id: %s\n", 59 str_error(ret)); 69 60 return ret; 70 61 }
Note:
See TracChangeset
for help on using the changeset viewer.