Changeset f480d7e in mainline for uspace/srv/devman/main.c


Ignore:
Timestamp:
2011-09-02T22:03:55Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f278930
Parents:
a1b7e80 (diff), 5b68e0c (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 ns8250 removal support.

File:
1 edited

Legend:

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

    ra1b7e80 rf480d7e  
    326326                        }
    327327                       
     328                        /* Verify that driver removed all functions */
     329                        fibril_rwlock_read_lock(&device_tree.rwlock);
     330                        if (!list_empty(&dev->functions)) {
     331                                fibril_rwlock_read_unlock(&device_tree.rwlock);
     332                                return EIO;
     333                        }
     334                        fibril_rwlock_read_unlock(&device_tree.rwlock);
     335                       
    328336                        detach_driver(&device_tree, dev);
    329337                       
Note: See TracChangeset for help on using the changeset viewer.