Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/proto/mousedev.c

    rb6a088f redb3cf2  
    4343#include <errno.h>
    4444#include <ipc/mouseev.h>
     45#include <input.h>
    4546#include <loc.h>
     47#include <mouse.h>
     48#include <mouse_port.h>
     49#include <mouse_proto.h>
    4650#include <sys/typefmt.h>
    47 #include "../mouse.h"
    48 #include "../mouse_port.h"
    49 #include "../mouse_proto.h"
    50 #include "../input.h"
    5151
    5252/** Mousedev softstate */
     
    9696                        retval = EOK;
    9797                        break;
    98                 case MOUSEEV_ABS_MOVE_EVENT:
    99                         mouse_push_event_abs_move(mousedev->mouse_dev,
    100                                 IPC_GET_ARG1(call), IPC_GET_ARG2(call),
    101                                 IPC_GET_ARG3(call), IPC_GET_ARG4(call));
    102                         retval = EOK;
    103                         break;
    10498                case MOUSEEV_BUTTON_EVENT:
    10599                        mouse_push_event_button(mousedev->mouse_dev,
     
    123117                printf("%s: Failed starting session with '%s'\n", NAME,
    124118                    mdev->svc_name);
    125                 return ENOENT;
     119                return -1;
    126120        }
    127121       
     
    131125                    NAME, mdev->svc_name);
    132126                async_hangup(sess);
    133                 return ENOMEM;
     127                return -1;
    134128        }
    135129       
     
    140134                mousedev_destroy(mousedev);
    141135                async_hangup(sess);
    142                 return ENOENT;
     136                return -1;
    143137        }
    144138       
     
    151145                    NAME, mdev->svc_name);
    152146                mousedev_destroy(mousedev);
    153                 return rc;
     147                return -1;
    154148        }
    155149       
    156         return EOK;
     150        return 0;
    157151}
    158152
Note: See TracChangeset for help on using the changeset viewer.