Changeset cac458f in mainline for uspace/srv/devman/devman.h
- Timestamp:
- 2011-06-22T01:59:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41e2118
- Parents:
- 79506d6 (diff), f1fae414 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devman.h
r79506d6 rcac458f 96 96 /** List of device ids for device-to-driver matching. */ 97 97 match_id_list_t match_ids; 98 /** Pointer to the linked list of devices controlled by this driver. */99 li nk_t devices;98 /** List of devices controlled by this driver. */ 99 list_t devices; 100 100 101 101 /** … … 108 108 typedef struct driver_list { 109 109 /** List of drivers */ 110 li nk_t drivers;110 list_t drivers; 111 111 /** Fibril mutex for list of drivers. */ 112 112 fibril_mutex_t drivers_mutex; … … 130 130 131 131 /** List of device functions. */ 132 li nk_t functions;132 list_t functions; 133 133 /** Driver of this device. */ 134 134 driver_t *drv; … … 170 170 match_id_list_t match_ids; 171 171 172 /** The list of device classes to which this device function belongs. */173 li nk_t classes;172 /** List of device classes to which this device function belongs. */ 173 list_t classes; 174 174 /** Devmap handle if the device function is registered by devmap. */ 175 175 devmap_handle_t devmap_handle; … … 228 228 * this class. 229 229 */ 230 li nk_t devices;230 list_t devices; 231 231 232 232 /** … … 280 280 typedef struct class_list { 281 281 /** List of classes. */ 282 li nk_t classes;282 list_t classes; 283 283 284 284 /**
Note:
See TracChangeset
for help on using the changeset viewer.