Ignore:
Timestamp:
2018-02-28T17:52:03Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

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

    rdf6ded8 r1b20da0  
    7474 * Input/Output/Feature Item flags
    7575 */
    76 /** 
     76/**
    7777 * Indicates whether the item is data (0) or a constant (1) value. Data
    7878 * indicates the item is defining report fields that contain modifiable device
     
    8484/**
    8585 * Indicates whether the item creates variable (1) or array (0) data fields in
    86  * reports. 
     86 * reports.
    8787 */
    8888#define USB_HID_ITEM_FLAG_VARIABLE(flags)       ((flags & 0x2) == 0x2)
     
    175175/**
    176176 * A Collection item identifies a relationship between two or more data
    177  * (Input, Output, or Feature.) 
     177 * (Input, Output, or Feature.)
    178178 */
    179179#define USB_HID_REPORT_TAG_COLLECTION           0xA
     
    203203#define USB_HID_REPORT_TAG_USAGE_PAGE           0x0
    204204
    205 /** 
     205/**
    206206 * Extent value in logical units. This is the minimum value that a variable
    207207 * or array item will report. For example, a mouse reporting x position values
     
    211211#define USB_HID_REPORT_TAG_LOGICAL_MINIMUM      0x1
    212212
    213 /** 
     213/**
    214214 * Extent value in logical units. This is the maximum value that a variable
    215215 * or array item will report.
     
    217217#define USB_HID_REPORT_TAG_LOGICAL_MAXIMUM      0x2
    218218
    219 /** 
     219/**
    220220 * Minimum value for the physical extent of a variable item. This represents
    221221 * the Logical Minimum with units applied to it.
     
    223223#define USB_HID_REPORT_TAG_PHYSICAL_MINIMUM     0x3
    224224
    225 /** 
     225/**
    226226 * Maximum value for the physical extent of a variable item.
    227227 */
    228228#define USB_HID_REPORT_TAG_PHYSICAL_MAXIMUM     0x4
    229229
    230 /** 
     230/**
    231231 * Value of the unit exponent in base 10. See the table later in this section
    232232 * for more information.
     
    234234#define USB_HID_REPORT_TAG_UNIT_EXPONENT        0x5
    235235
    236 /** 
     236/**
    237237 * Unit values.
    238238 */
    239239#define USB_HID_REPORT_TAG_UNIT                 0x6
    240240
    241 /** 
     241/**
    242242 * Unsigned integer specifying the size of the report fields in bits. This
    243243 * allows the parser to build an item map for the report handler to use.
     
    245245#define USB_HID_REPORT_TAG_REPORT_SIZE          0x7
    246246
    247 /** 
     247/**
    248248 * Unsigned value that specifies the Report ID. If a Report ID tag is used
    249249 * anywhere in Report descriptor, all data reports for the device are preceded
     
    255255#define USB_HID_REPORT_TAG_REPORT_ID            0x8
    256256
    257 /** 
     257/**
    258258 * Unsigned integer specifying the number of data fields for the item;
    259259 * determines how many fields are included in the report for this particular
     
    262262#define USB_HID_REPORT_TAG_REPORT_COUNT         0x9
    263263
    264 /** 
     264/**
    265265 * Places a copy of the global item state table on the stack.
    266266 */
    267267#define USB_HID_REPORT_TAG_PUSH                 0xA
    268268
    269 /** 
     269/**
    270270 * Replaces the item state table with the top structure from the stack.
    271271 */
Note: See TracChangeset for help on using the changeset viewer.