Changes in uspace/lib/usb/src/hub.c [357a302:bc1c6fb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hub.c
r357a302 rbc1c6fb 39 39 #include <usbhc_iface.h> 40 40 #include <errno.h> 41 #include <assert.h> 41 42 42 43 /** Check that HC connection is alright. … … 56 57 * 57 58 * @param connection Opened connection to host controller. 59 * @param speed Speed of the device that will respond on the default address. 58 60 * @return Error code. 59 61 */ … … 85 87 * 86 88 * @param connection Opened connection to host controller. 89 * @param speed Speed of the new device (device that will be assigned 90 * the returned address). 87 91 * @return Assigned USB address or negative error code. 88 92 */ … … 143 147 /** Wrapper for registering attached device to the hub. 144 148 * 145 * The @p enable_port function is expected to enable si ngalling on given149 * The @p enable_port function is expected to enable signaling on given 146 150 * port. 147 151 * The two arguments to it can have arbitrary meaning … … 151 155 * 152 156 * If the @p enable_port fails (i.e. does not return EOK), the device 153 * addition is cancel led.157 * addition is canceled. 154 158 * The return value is then returned (it is good idea to use different 155 159 * error codes than those listed as return codes by this function itself). 156 160 * 157 * @param parent Parent device (i.e. the hub device).158 * @param connection Opened connection to host controller.159 * @param dev_speed New device speed.160 * @param enable_port Function for enabling signalling through the port the161 * @param[in] parent Parent device (i.e. the hub device). 162 * @param[in] connection Opened connection to host controller. 163 * @param[in] dev_speed New device speed. 164 * @param[in] enable_port Function for enabling signaling through the port the 161 165 * device is attached to. 162 * @param port_no Port number (passed through to @p enable_port).163 * @param arg Any data argument to @p enable_port.166 * @param[in] port_no Port number (passed through to @p enable_port). 167 * @param[in] arg Any data argument to @p enable_port. 164 168 * @param[out] assigned_address USB address of the device. 165 169 * @param[out] assigned_handle Devman handle of the new device. 170 * @param[in] dev_ops Child device ops. 171 * @param[in] new_dev_data Arbitrary pointer to be stored in the child 172 * as @c driver_data. 173 * @param[out] new_fun Storage where pointer to allocated child function 174 * will be written. 166 175 * @return Error code. 167 176 * @retval ENOENT Connection to HC not opened. … … 172 181 * request or requests for descriptors when creating match ids). 173 182 */ 174 int usb_hc_new_device_wrapper(d evice_t *parent, usb_hc_connection_t *connection,183 int usb_hc_new_device_wrapper(ddf_dev_t *parent, usb_hc_connection_t *connection, 175 184 usb_speed_t dev_speed, 176 185 int (*enable_port)(int port_no, void *arg), int port_no, void *arg, 177 usb_address_t *assigned_address, devman_handle_t *assigned_handle) 186 usb_address_t *assigned_address, devman_handle_t *assigned_handle, 187 ddf_dev_ops_t *dev_ops, void *new_dev_data, ddf_fun_t **new_fun) 178 188 { 179 189 CHECK_CONNECTION(connection); … … 199 209 200 210 /* 201 * Enable the port (i.e. allow signal ling through this port).211 * Enable the port (i.e. allow signaling through this port). 202 212 */ 203 213 rc = enable_port(port_no, arg); … … 251 261 devman_handle_t child_handle; 252 262 rc = usb_device_register_child_in_devman(dev_addr, dev_conn.hc_handle, 253 parent, &child_handle); 263 parent, &child_handle, 264 dev_ops, new_dev_data, new_fun); 254 265 if (rc != EOK) { 255 266 rc = ESTALL;
Note:
See TracChangeset
for help on using the changeset viewer.