Changeset cf2af94 in mainline for uspace/srv/devman/devman.h
- Timestamp:
- 2011-02-09T11:46:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb15135a
- Parents:
- a49c4002 (diff), 0b37882 (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
ra49c4002 rcf2af94 40 40 #include <adt/list.h> 41 41 #include <adt/hash_table.h> 42 #include <ipc/ipc.h>43 42 #include <ipc/devman.h> 44 43 #include <ipc/devmap.h> … … 86 85 87 86 /** Phone asociated with this driver. */ 88 ipcarg_t phone;87 sysarg_t phone; 89 88 /** Name of the device driver. */ 90 89 char *name; … … 168 167 */ 169 168 link_t devmap_link; 169 170 /** 171 * Whether this device was already passed to the driver. 172 */ 173 bool passed_to_driver; 170 174 }; 171 175 … … 297 301 298 302 extern driver_t *find_driver(driver_list_t *, const char *); 299 extern void set_driver_phone(driver_t *, ipcarg_t);303 extern void set_driver_phone(driver_t *, sysarg_t); 300 304 extern void initialize_running_driver(driver_t *, dev_tree_t *); 301 305
Note:
See TracChangeset
for help on using the changeset viewer.