Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/main.c

    rc6c389ed r0b5a4131  
    202202static void devman_add_child(ipc_callid_t callid, ipc_call_t *call)
    203203{
    204         device_handle_t parent_handle = IPC_GET_ARG1(*call);
     204        devman_handle_t parent_handle = IPC_GET_ARG1(*call);
    205205        ipcarg_t match_count = IPC_GET_ARG2(*call);
    206206        dev_tree_t *tree = &device_tree;
     
    271271static void devman_add_device_to_class(ipc_callid_t callid, ipc_call_t *call)
    272272{
    273         device_handle_t handle = IPC_GET_ARG1(*call);
     273        devman_handle_t handle = IPC_GET_ARG1(*call);
    274274       
    275275        /* Get class name. */
     
    414414    bool drv_to_parent)
    415415{
    416         device_handle_t handle = IPC_GET_ARG2(*icall);
     416        devman_handle_t handle = IPC_GET_ARG2(*icall);
    417417       
    418418        node_t *dev = find_dev_node(&device_tree, handle);
     
    464464static void devman_connection_devmapper(ipc_callid_t iid, ipc_call_t *icall)
    465465{
    466         dev_handle_t devmap_handle = IPC_GET_METHOD(*icall);
     466        devmap_handle_t devmap_handle = IPC_GET_METHOD(*icall);
    467467        node_t *dev;
    468468
Note: See TracChangeset for help on using the changeset viewer.