Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/hid/xtkbd/xtkbd.c

    rfafb8e5 rf2d88f3  
    344344static void default_connection_handler(ddf_fun_t *fun, ipc_call_t *icall)
    345345{
    346         const sysarg_t method = ipc_get_imethod(icall);
     346        const sysarg_t method = IPC_GET_IMETHOD(*icall);
    347347        xt_kbd_t *kbd = ddf_dev_data_get(ddf_fun_get_dev(fun));
    348348        unsigned mods;
     
    355355                 * assume AT keyboard with Scan Code Set 1.
    356356                 */
    357                 mods = ipc_get_arg1(icall);
     357                mods = IPC_GET_ARG1(*icall);
    358358                const uint8_t status = 0 |
    359359                    ((mods & KM_CAPS_LOCK) ? LI_CAPS : 0) |
Note: See TracChangeset for help on using the changeset viewer.