Ignore:
Timestamp:
2011-06-19T15:59:42Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
26e7d6d
Parents:
9724d7f (diff), 74464e8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhid/include/usb/hid/hidpath.h

    r9724d7f r3842a955  
    8888        uint8_t flags;
    8989
    90         /** Linked list structure*/
    91         link_t link;
     90        /** Link to usb_hid_report_path_t.items list */
     91        link_t rpath_items_link;
    9292} usb_hid_report_usage_path_t;
    9393
     
    9898 * */
    9999typedef struct {
    100         /** Length of usage path */     
    101         int depth;     
     100        /** Length of usage path */
     101        int depth;
    102102
    103103        /** Report id. Zero is reserved and means that report id is not used.
    104104         * */
    105105        uint8_t report_id;
    106        
    107         /** Linked list structure. */   
    108         link_t link; /* list */
    109106
    110         /** Head of the list of usage path items. */
    111         link_t head;
     107        /** Link to usb_hid_report_path_t.collection_paths list. */
     108        link_t cpath_link;
    112109
     110        /** List of usage path items. */
     111        list_t items;   /* of usb_hid_report_usage_path_t */
    113112} usb_hid_report_path_t;
    114113
Note: See TracChangeset for help on using the changeset viewer.