Changes in uspace/srv/hid/input/input.c [f2d88f3:7348c4b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/input.c
rf2d88f3 r7348c4b 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; … … 630 630 kbd_add_dev(&chardev_port, &stty_ctl); 631 631 #endif 632 #if defined(UARCH_arm64) && defined(MACHINE_virt) 633 kbd_add_dev(&chardev_port, &stty_ctl); 634 #endif 632 635 /* Silence warning on abs32le about kbd_add_dev() being unused */ 633 636 (void) kbd_add_dev;
Note:
See TracChangeset
for help on using the changeset viewer.