Changeset 03c971f in mainline for uspace/srv/hid


Ignore:
Timestamp:
2013-08-15T14:20:16Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bb2a5b2
Parents:
f2c19b0 (diff), 2921602 (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:

Mainline changes.

Location:
uspace/srv/hid
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/port/adb.c

    rf2c19b0 r03c971f  
    118118                ipc_callid_t callid = async_get_call(&call);
    119119
    120                 int retval;
     120                int retval = EOK;
    121121               
    122122                if (!IPC_GET_IMETHOD(call)) {
  • uspace/srv/hid/input/port/adb_mouse.c

    rf2c19b0 r03c971f  
    5454                ipc_callid_t callid = async_get_call(&call);
    5555               
    56                 int retval;
     56                int retval = EOK;
    5757               
    5858                if (!IPC_GET_IMETHOD(call)) {
  • uspace/srv/hid/input/port/chardev.c

    rf2c19b0 r03c971f  
    148148                }
    149149
    150                 int retval;
     150                int retval = EOK;
    151151
    152152                switch (IPC_GET_IMETHOD(call)) {
  • uspace/srv/hid/isdv4_tablet/isdv4.h

    rf2c19b0 r03c971f  
    7676} isdv4_source_type_t;
    7777
    78 typedef struct isdv4_event {
     78struct isdv4_event {
    7979        isdv4_event_type_t type;
    8080        isdv4_source_type_t source;
     
    8383        unsigned int pressure;
    8484        unsigned int button;
    85 } isdv4_event_t;
     85};
    8686
    8787extern int isdv4_init(isdv4_state_t *, async_sess_t *, isdv4_event_fn);
Note: See TracChangeset for help on using the changeset viewer.