Changeset b247c714 in mainline


Ignore:
Timestamp:
2025-07-03T17:09:13Z (3 weeks ago)
Author:
Miroslav Cimerman <mc@…>
Children:
6aafb48
Parents:
038a8d0
Message:

hr: rename async handler

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/hr/hr.c

    r038a8d0 rb247c714  
    6161static void hr_get_vol_states_srv(ipc_call_t *);
    6262static void hr_ctl_conn(ipc_call_t *);
    63 static void hr_client_conn(ipc_call_t *, void *);
     63static void hr_call_handler(ipc_call_t *, void *);
    6464
    6565loc_srv_t *hr_srv;
     
    619619 * IPC calls.
    620620 */
    621 static void hr_client_conn(ipc_call_t *icall, void *arg)
     621static void hr_call_handler(ipc_call_t *icall, void *arg)
    622622{
    623623        HR_DEBUG("%s()", __func__);
     
    654654        list_initialize(&hr_volumes);
    655655
    656         async_set_fallback_port_handler(hr_client_conn, NULL);
     656        async_set_fallback_port_handler(hr_call_handler, NULL);
    657657
    658658        rc = loc_server_register(NAME, &hr_srv);
Note: See TracChangeset for help on using the changeset viewer.