Changeset 132ab5d1 in mainline for uspace/lib/usbhid/src/hidpath.c
- Timestamp:
- 2018-01-30T03:20:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (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/usbhid/src/hidpath.c
r8bfb163 r132ab5d1 36 36 #include <errno.h> 37 37 #include <stdio.h> 38 #include <malloc.h>39 38 #include <mem.h> 39 #include <stdlib.h> 40 40 #include <usb/debug.h> 41 41 #include <assert.h> … … 191 191 * @param flags Flags determining the mode of comparison 192 192 * 193 * @return EOKif both paths are identical, non zero number otherwise193 * @return 0 if both paths are identical, non zero number otherwise 194 194 * 195 195 */ … … 213 213 // Empty path match all others 214 214 if (path->depth == 0) { 215 return EOK;215 return 0; 216 216 } 217 217 … … 239 239 if (USB_HID_SAME_USAGE(report_item->usage, 240 240 path_item->usage)) 241 return EOK;241 return 0; 242 242 } else { 243 return EOK;243 return 0; 244 244 } 245 245 } … … 285 285 ((report_link == &report_path->items.head) && 286 286 (path_link == &path->items.head))) { 287 return EOK;287 return 0; 288 288 } else { 289 289 return 1; … … 297 297 298 298 if (list_empty(&path->items)) { 299 return EOK;299 return 0; 300 300 } 301 301 … … 320 320 321 321 if (path_link == &path->items.head) { 322 return EOK;322 return 0; 323 323 } else { 324 324 return 1; … … 327 327 328 328 default: 329 return EINVAL;329 return -1; 330 330 } 331 331 }
Note:
See TracChangeset
for help on using the changeset viewer.