Changeset db8b7ca in mainline for uspace/drv/bus


Ignore:
Timestamp:
2012-12-26T19:02:51Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
34289ea
Parents:
d8cdf39e
Message:

libusbdev: Drop support for custom function data and ops.

Unused and it will go away soon anyway.

Location:
uspace/drv/bus/usb
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/uhcirh/port.c

    rd8cdf39e rdb8b7ca  
    266266                ret = usb_hc_new_device_wrapper(port->rh, &port->hc_connection,
    267267                    speed, uhci_port_reset_enable, port,
    268                     &port->attached_device.address, NULL, NULL,
    269                     &port->attached_device.fun);
     268                    &port->attached_device.address, &port->attached_device.fun);
    270269        } while (ret != EOK && count-- > 0);
    271270
  • uspace/drv/bus/usb/usbhub/port.c

    rd8cdf39e rdb8b7ca  
    426426        const int rc = usb_hc_new_device_wrapper(data->hub->usb_device->ddf_dev,
    427427            &data->hub->usb_device->hc_conn, data->speed, enable_port_callback,
    428             data->port, &new_address, NULL, NULL, &child_fun);
     428            data->port, &new_address, &child_fun);
    429429
    430430        if (rc == EOK) {
Note: See TracChangeset for help on using the changeset viewer.