Changeset 09ab0a9a in mainline for uspace/lib/usbhid/src/hidpath.c
- Timestamp:
- 2018-09-13T12:05:53Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hidpath.c
rb2aaaa0 r09ab0a9a 41 41 #include <assert.h> 42 42 43 44 43 /** 45 44 * Compares two usages if they are same or not or one of the usages is not … … 62 61 #define USB_HID_SAME_USAGE_PAGE(page1, page2) \ 63 62 ((page1 == page2) || (page1 == 0) || (page2 == 0)) 64 65 63 66 64 /** … … 92 90 return EOK; 93 91 } 94 95 92 96 93 /** … … 114 111 } 115 112 116 117 113 /** 118 114 * Nulls last item of the usage path structure. … … 132 128 } 133 129 } 134 135 130 136 131 /** … … 350 345 } 351 346 352 353 347 /** 354 348 * Releases given usage path structure. … … 369 363 } 370 364 371 372 365 /** 373 366 * Clone content of given usage path to the new one … … 413 406 } 414 407 415 416 408 /** 417 409 * Sets report id in usage path structure
Note:
See TracChangeset
for help on using the changeset viewer.