Changeset a76b01b4 in mainline for uspace/lib/usbhost/include


Ignore:
Timestamp:
2012-02-24T19:11:23Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a2bd8822
Parents:
76fbd9a
Message:

libus*: remove optical separators

Location:
uspace/lib/usbhost/include/usb/host
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/include/usb/host/hcd.h

    r76fbd9a ra76b01b4  
    6161        void (*ep_remove_hook)(hcd_t *, endpoint_t *);
    6262};
    63 /*----------------------------------------------------------------------------*/
     63
    6464/** Initialize hcd_t structure.
    6565 * Initializes device and endpoint managers. Sets data and hook pointer to NULL.
     
    7979        hcd->ep_remove_hook = NULL;
    8080}
    81 /*----------------------------------------------------------------------------*/
     81
    8282/** Check registered endpoints and reset toggle bit if necessary.
    8383 * @param hcd hcd_t structure, non-null.
     
    9292            &hcd->ep_manager, target, (const uint8_t *)setup_data);
    9393}
    94 /*----------------------------------------------------------------------------*/
     94
    9595/** Data retrieve wrapper.
    9696 * @param fun ddf function, non-null.
     
    102102        return fun->driver_data;
    103103}
    104 /*----------------------------------------------------------------------------*/
     104
    105105extern usbhc_iface_t hcd_iface;
    106106
  • uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h

    r76fbd9a ra76b01b4  
    115115void usb_transfer_batch_finish_error(const usb_transfer_batch_t *instance,
    116116    const void* data, size_t size, int error);
    117 /*----------------------------------------------------------------------------*/
     117
    118118/** Finish batch using stored error value and transferred size.
    119119 *
     
    128128            instance, data, instance->transfered_size, instance->error);
    129129}
    130 /*----------------------------------------------------------------------------*/
     130
    131131/** Determine batch direction based on the callbacks present
    132132 * @param[in] instance Batch structure to use, non-null.
Note: See TracChangeset for help on using the changeset viewer.