Changeset 132ab5d1 in mainline for uspace/lib/usbhid/src/hidpath.c


Ignore:
Timestamp:
2018-01-30T03:20:45Z (7 years ago)
Author:
Jenda <jenda.jzqk73@…>
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.
Message:

Merge commit '6a5d05bd2551e64111bea4f9332dd7448c26ce84' into forwardport

Separate return value from error code in gen_irq_code*().

File:
1 edited

Legend:

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

    r8bfb163 r132ab5d1  
    3636#include <errno.h>
    3737#include <stdio.h>
    38 #include <malloc.h>
    3938#include <mem.h>
     39#include <stdlib.h>
    4040#include <usb/debug.h>
    4141#include <assert.h>
     
    191191 * @param flags       Flags determining the mode of comparison
    192192 *
    193  * @return EOK if both paths are identical, non zero number otherwise
     193 * @return 0 if both paths are identical, non zero number otherwise
    194194 *
    195195 */
     
    213213        // Empty path match all others
    214214        if (path->depth == 0) {
    215                 return EOK;
     215                return 0;
    216216        }
    217217       
     
    239239                                        if (USB_HID_SAME_USAGE(report_item->usage,
    240240                                            path_item->usage))
    241                                                 return EOK;
     241                                                return 0;
    242242                                } else {
    243                                         return EOK;
     243                                        return 0;
    244244                                }
    245245                        }
     
    285285                    ((report_link == &report_path->items.head) &&
    286286                    (path_link == &path->items.head))) {
    287                         return EOK;
     287                        return 0;
    288288                } else {
    289289                        return 1;
     
    297297               
    298298                if (list_empty(&path->items)) {
    299                         return EOK;
     299                        return 0;
    300300                }
    301301               
     
    320320               
    321321                if (path_link == &path->items.head) {
    322                         return EOK;
     322                        return 0;
    323323                } else {
    324324                        return 1;
     
    327327       
    328328        default:
    329                 return EINVAL;
     329                return -1;
    330330        }
    331331}
Note: See TracChangeset for help on using the changeset viewer.