Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devmap/devmap.c

    rcb819f9 rab108be4  
    7575        link_t namespaces;
    7676        /** Unique namespace identifier */
    77         devmap_handle_t handle;
     77        dev_handle_t handle;
    7878        /** Namespace name */
    7979        char *name;
     
    9292        link_t driver_devices;
    9393        /** Unique device identifier */
    94         devmap_handle_t handle;
     94        dev_handle_t handle;
    9595        /** Device namespace */
    9696        devmap_namespace_t *namespace;
     
    118118static FIBRIL_MUTEX_INITIALIZE(null_devices_mutex);
    119119
    120 static devmap_handle_t last_handle = 0;
     120static dev_handle_t last_handle = 0;
    121121static devmap_device_t *null_devices[NULL_DEVICES];
    122122
    123 static devmap_handle_t devmap_create_handle(void)
     123static dev_handle_t devmap_create_handle(void)
    124124{
    125125        /* TODO: allow reusing old handles after their unregistration
     
    233233 *
    234234 */
    235 static devmap_namespace_t *devmap_namespace_find_handle(devmap_handle_t handle)
     235static devmap_namespace_t *devmap_namespace_find_handle(dev_handle_t handle)
    236236{
    237237        link_t *item;
     
    275275 *
    276276 */
    277 static devmap_device_t *devmap_device_find_handle(devmap_handle_t handle)
     277static devmap_device_t *devmap_device_find_handle(dev_handle_t handle)
    278278{
    279279        link_t *item;
     
    608608         * Get handle from request
    609609         */
    610         devmap_handle_t handle = IPC_GET_ARG2(*call);
     610        dev_handle_t handle = IPC_GET_ARG2(*call);
    611611        devmap_device_t *dev = devmap_device_find_handle(handle);
    612612       
     
    10521052                        break;
    10531053                default:
    1054                         ipc_answer_0(callid, ENOENT);
     1054                        if (!(callid & IPC_CALLID_NOTIFICATION))
     1055                                ipc_answer_0(callid, ENOENT);
    10551056                }
    10561057        }
     
    11101111                        break;
    11111112                default:
    1112                         ipc_answer_0(callid, ENOENT);
     1113                        if (!(callid & IPC_CALLID_NOTIFICATION))
     1114                                ipc_answer_0(callid, ENOENT);
    11131115                }
    11141116        }
Note: See TracChangeset for help on using the changeset viewer.