Changeset fafb8e5 in mainline for uspace/srv/hid/input/input.c
- Timestamp:
- 2019-02-06T13:25:12Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95a47b0
- Parents:
- eb13ef8
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 14:10:59)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-06 13:25:12)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/input.c
reb13ef8 rfafb8e5 334 334 async_get_call(&call); 335 335 336 if (! IPC_GET_IMETHOD(&call)) {336 if (!ipc_get_imethod(&call)) { 337 337 if (client->sess != NULL) { 338 338 async_hangup(client->sess); … … 353 353 async_answer_0(&call, ELIMIT); 354 354 } else { 355 switch ( IPC_GET_IMETHOD(&call)) {355 switch (ipc_get_imethod(&call)) { 356 356 case INPUT_ACTIVATE: 357 357 active_client = client; … … 368 368 static void kconsole_event_handler(ipc_call_t *call, void *arg) 369 369 { 370 if ( IPC_GET_ARG1(call)) {370 if (ipc_get_arg1(call)) { 371 371 /* Kernel console activated */ 372 372 active = false;
Note:
See TracChangeset
for help on using the changeset viewer.