Changeset 5174c62 in mainline for uspace/srv/devman/devman.c


Ignore:
Timestamp:
2010-12-12T10:20:24Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8365533, dad6e8a, ec6ab88
Parents:
b9eb93f (diff), 554debd (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 mainline changes

File:
1 edited

Legend:

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

    rb9eb93f r5174c62  
    686686}
    687687
    688 static FIBRIL_MUTEX_INITIALIZE(add_device_guard);
    689 
    690688/** Pass a device to running driver.
    691689 *
     
    695693void add_device(int phone, driver_t *drv, node_t *node, dev_tree_t *tree)
    696694{
    697         fibril_mutex_lock(&add_device_guard);
    698 
    699695        /*
    700696         * We do not expect to have driver's mutex locked as we do not
     
    727723        /* Wait for answer from the driver. */
    728724        async_wait_for(req, &rc);
    729 
    730         fibril_mutex_unlock(&add_device_guard);
    731725
    732726        switch(rc) {
Note: See TracChangeset for help on using the changeset viewer.