Changeset 19a1800 in mainline for uspace/lib/usb/src/hidparser.c
- Timestamp:
- 2011-03-01T22:20:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e24e7b1
- Parents:
- 976f546 (diff), ac8285d (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/hidparser.c
r976f546 r19a1800 196 196 } 197 197 198 /** Free the HID report parser structure199 *200 * @param parser Opaque HID report parser structure201 * @return Error code202 */203 int usb_hid_free_report_parser(usb_hid_report_parser_t *parser)204 {205 206 return EOK;207 }208 209 198 210 199 /** … … 237 226 238 227 if (size != 8) { 239 return -1;//ERANGE;228 return ERANGE; 240 229 } 241 230 … … 540 529 } 541 530 542 /** 543 * Frees complete structure of report parser 544 * 545 * @param Parser to free 531 /** Free the HID report parser structure 532 * 533 * @param parser Opaque HID report parser structure 546 534 * @return Error code 547 535 */ … … 561 549 * @} 562 550 */ 563 564 565 /**566 * @}567 */
Note:
See TracChangeset
for help on using the changeset viewer.