Changeset b7fd2a0 in mainline for uspace/drv/bus/usb/usbmid/usbmid.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbmid/usbmid.c
r36f0738 rb7fd2a0 51 51 * @return Error code. 52 52 */ 53 static int usb_iface_device_handle(ddf_fun_t *fun, devman_handle_t *handle)53 static errno_t usb_iface_device_handle(ddf_fun_t *fun, devman_handle_t *handle) 54 54 { 55 55 assert(fun); … … 61 61 62 62 /** Callback for DDF USB get interface. */ 63 static int usb_iface_iface_no(ddf_fun_t *fun, int *iface_no)63 static errno_t usb_iface_iface_no(ddf_fun_t *fun, int *iface_no) 64 64 { 65 65 usbmid_interface_t *iface = ddf_fun_data_get(fun); … … 83 83 }; 84 84 85 int usbmid_interface_destroy(usbmid_interface_t *mid_iface)85 errno_t usbmid_interface_destroy(usbmid_interface_t *mid_iface) 86 86 { 87 87 assert(mid_iface); 88 88 assert_link_not_used(&mid_iface->link); 89 const int ret = ddf_fun_unbind(mid_iface->fun);89 const errno_t ret = ddf_fun_unbind(mid_iface->fun); 90 90 if (ret != EOK) { 91 91 return ret; … … 103 103 * @return Error code. 104 104 */ 105 int usbmid_spawn_interface_child(usb_device_t *parent,105 errno_t usbmid_spawn_interface_child(usb_device_t *parent, 106 106 usbmid_interface_t **iface_ret, 107 107 const usb_standard_device_descriptor_t *device_descriptor, … … 110 110 ddf_fun_t *child = NULL; 111 111 char *child_name = NULL; 112 int rc;112 errno_t rc; 113 113 114 114 /*
Note:
See TracChangeset
for help on using the changeset viewer.