Changeset 7013b14 in mainline for uspace/drv/ohci/hc.h


Ignore:
Timestamp:
2011-04-13T14:19:12Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d6522dd
Parents:
9a6fde4
Message:

Batch processing implemented to use static EDs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/ohci/hc.h

    r9a6fde4 r7013b14  
    5353typedef struct hc {
    5454        ohci_regs_t *registers;
     55        hcca_t *hcca;
     56
    5557        usb_address_t rh_address;
    5658        rh_t rh;
    5759
    58         hcca_t *hcca;
     60        endpoint_list_t lists[4];
     61        link_t pending_batches;
    5962
    60         endpoint_list_t lists[4];
    61 
    62         ddf_fun_t *ddf_instance;
    6363        usb_device_keeper_t manager;
    6464        usb_endpoint_manager_t ep_manager;
     
    8080int hc_add_endpoint(hc_t *instance, usb_address_t address, usb_endpoint_t ep,
    8181    usb_speed_t speed, usb_transfer_type_t type, usb_direction_t direction,
    82                 size_t max_packet_size, size_t size, unsigned interval);
     82    size_t max_packet_size, size_t size, unsigned interval);
    8383
    8484int hc_remove_endpoint(hc_t *instance, usb_address_t address,
Note: See TracChangeset for help on using the changeset viewer.