Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhid/src/hidpath.c

    rb7fd2a0 r38d150e  
    7373 * @return Error code
    7474 */
    75 errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,
     75int usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,
    7676                                    int32_t usage_page, int32_t usage)
    7777{       
     
    191191 * @param flags       Flags determining the mode of comparison
    192192 *
    193  * @return 0 if both paths are identical, non zero number otherwise
     193 * @return EOK if both paths are identical, non zero number otherwise
    194194 *
    195195 */
     
    213213        // Empty path match all others
    214214        if (path->depth == 0) {
    215                 return 0;
     215                return EOK;
    216216        }
    217217       
     
    239239                                        if (USB_HID_SAME_USAGE(report_item->usage,
    240240                                            path_item->usage))
    241                                                 return 0;
     241                                                return EOK;
    242242                                } else {
    243                                         return 0;
     243                                        return EOK;
    244244                                }
    245245                        }
     
    285285                    ((report_link == &report_path->items.head) &&
    286286                    (path_link == &path->items.head))) {
    287                         return 0;
     287                        return EOK;
    288288                } else {
    289289                        return 1;
     
    297297               
    298298                if (list_empty(&path->items)) {
    299                         return 0;
     299                        return EOK;
    300300                }
    301301               
     
    320320               
    321321                if (path_link == &path->items.head) {
    322                         return 0;
     322                        return EOK;
    323323                } else {
    324324                        return 1;
     
    327327       
    328328        default:
    329                 return -1;
     329                return EINVAL;
    330330        }
    331331}
     
    423423 * @return Error code
    424424 */
    425 errno_t usb_hid_report_path_set_report_id(usb_hid_report_path_t *path,
     425int usb_hid_report_path_set_report_id(usb_hid_report_path_t *path,
    426426        uint8_t report_id)
    427427{
Note: See TracChangeset for help on using the changeset viewer.