Ignore:
File:
1 edited

Legend:

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

    rb72efe8 rf3b39b4  
    8888        uint8_t flags;
    8989
    90         /** Link to usb_hid_report_path_t.items list */
    91         link_t rpath_items_link;
     90        /** Linked list structure*/
     91        link_t 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 */
    106109
    107         /** Link to usb_hid_report_path_t.collection_paths list. */
    108         link_t cpath_link;
     110        /** Head of the list of usage path items. */
     111        link_t head;
    109112
    110         /** List of usage path items. */
    111         list_t items;   /* of usb_hid_report_usage_path_t */
    112113} usb_hid_report_path_t;
    113114
Note: See TracChangeset for help on using the changeset viewer.