Changeset 02a7575 in mainline


Ignore:
Timestamp:
2017-12-20T14:04:05Z (6 years ago)
Author:
Petr Mánek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a31068a
Parents:
47a9633
Message:

usbdiag: add subclass and protocol of diag interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbdiag/main.c

    r47a9633 r02a7575  
    129129        .direction = USB_DIRECTION_IN,
    130130        .interface_class = USB_CLASS_DIAGNOSTIC,
     131        .interface_subclass = 0x00,
     132        .interface_protocol = 0x01,
    131133        .flags = 0
    132134};
     
    135137        .direction = USB_DIRECTION_OUT,
    136138        .interface_class = USB_CLASS_DIAGNOSTIC,
     139        .interface_subclass = 0x00,
     140        .interface_protocol = 0x01,
    137141        .flags = 0
    138142};
     
    141145        .direction = USB_DIRECTION_IN,
    142146        .interface_class = USB_CLASS_DIAGNOSTIC,
     147        .interface_subclass = 0x00,
     148        .interface_protocol = 0x01,
    143149        .flags = 0
    144150};
     
    147153        .direction = USB_DIRECTION_OUT,
    148154        .interface_class = USB_CLASS_DIAGNOSTIC,
     155        .interface_subclass = 0x00,
     156        .interface_protocol = 0x01,
    149157        .flags = 0
    150158};
     
    153161        .direction = USB_DIRECTION_IN,
    154162        .interface_class = USB_CLASS_DIAGNOSTIC,
     163        .interface_subclass = 0x00,
     164        .interface_protocol = 0x01,
    155165        .flags = 0
    156166};
     
    159169        .direction = USB_DIRECTION_OUT,
    160170        .interface_class = USB_CLASS_DIAGNOSTIC,
     171        .interface_subclass = 0x00,
     172        .interface_protocol = 0x01,
    161173        .flags = 0
    162174};
Note: See TracChangeset for help on using the changeset viewer.