Changeset 6e3c005 in mainline for uspace/lib/usbdev/src/devdrv.c


Ignore:
Timestamp:
2011-12-14T15:29:41Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0487a2
Parents:
22ecbde
Message:

libusbdev: Doxygen and minor cleanup/renaming.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/src/devdrv.c

    r22ecbde r6e3c005  
    516516        }
    517517
     518        /* Open hc connection for pipe registration. */
    518519        rc = usb_hc_connection_open(&usb_dev->hc_conn);
    519520        if (rc != EOK) {
     
    575576}
    576577
     578/** Allocate driver specific data.
     579 * @param usb_dev usb_device structure.
     580 * @param size requested data size.
     581 * @return Pointer to the newly allocated space, NULL on failure.
     582 */
    577583void * usb_device_data_alloc(usb_device_t *usb_dev, size_t size)
    578584{
Note: See TracChangeset for help on using the changeset viewer.