Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/hid/usbhid/multimedia/multimedia.c

    re0a5d4c reed4139  
    8080 * later use by the driver to notify about key events.
    8181 *
    82  * @param fun Device function handling the call.
    83  * @param icallid Call id.
    84  * @param icall Call data.
    85  */
    86 static void default_connection_handler(ddf_fun_t *fun,
    87     ipc_callid_t icallid, ipc_call_t *icall)
     82 * @param fun           Device function handling the call.
     83 * @param icall_handle  Call handle.
     84 * @param icall         Call data.
     85 */
     86static void
     87default_connection_handler(ddf_fun_t *fun, cap_call_handle_t icall_handle,
     88    ipc_call_t *icall)
    8889{
    8990        usb_log_debug(NAME " default_connection_handler()");
     
    9899                        usb_log_debug(NAME " Saved session to console: %p",
    99100                            sess);
    100                         async_answer_0(icallid, EOK);
     101                        async_answer_0(icall_handle, EOK);
    101102                } else
    102                         async_answer_0(icallid, ELIMIT);
     103                        async_answer_0(icall_handle, ELIMIT);
    103104        } else
    104                 async_answer_0(icallid, EINVAL);
     105                async_answer_0(icall_handle, EINVAL);
    105106}
    106107
Note: See TracChangeset for help on using the changeset viewer.