Changeset 0b749a3 in mainline for uspace/srv/devmap/devmap.c


Ignore:
Timestamp:
2010-11-22T15:39:53Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0eddb76, aae339e9
Parents:
9a1d8ab (diff), 8cd1aa5e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge development/ changes

File:
1 edited

Legend:

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

    r9a1d8ab r0b749a3  
    7575        link_t namespaces;
    7676        /** Unique namespace identifier */
    77         dev_handle_t handle;
     77        devmap_handle_t handle;
    7878        /** Namespace name */
    7979        char *name;
     
    9292        link_t driver_devices;
    9393        /** Unique device identifier */
    94         dev_handle_t handle;
     94        devmap_handle_t handle;
    9595        /** Device namespace */
    9696        devmap_namespace_t *namespace;
     
    118118static FIBRIL_MUTEX_INITIALIZE(null_devices_mutex);
    119119
    120 static dev_handle_t last_handle = 0;
     120static devmap_handle_t last_handle = 0;
    121121static devmap_device_t *null_devices[NULL_DEVICES];
    122122
    123 static dev_handle_t devmap_create_handle(void)
     123static devmap_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(dev_handle_t handle)
     235static devmap_namespace_t *devmap_namespace_find_handle(devmap_handle_t handle)
    236236{
    237237        link_t *item;
     
    275275 *
    276276 */
    277 static devmap_device_t *devmap_device_find_handle(dev_handle_t handle)
     277static devmap_device_t *devmap_device_find_handle(devmap_handle_t handle)
    278278{
    279279        link_t *item;
     
    608608         * Get handle from request
    609609         */
    610         dev_handle_t handle = IPC_GET_ARG2(*call);
     610        devmap_handle_t handle = IPC_GET_ARG2(*call);
    611611        devmap_device_t *dev = devmap_device_find_handle(handle);
    612612       
Note: See TracChangeset for help on using the changeset viewer.