Changeset bda60d9 in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2010-03-19T14:40:14Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d347b53
- Parents:
- 7707954
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
r7707954 rbda60d9 120 120 } 121 121 122 static void devman_add_child(ipc_callid_t callid, ipc_call_t *call, driver_t *driver) 123 { 124 printf(NAME ": devman_add_child\n"); 125 126 // TODO 127 128 } 129 122 130 /** Function for handling connections to device manager. 123 131 * … … 145 153 continue; 146 154 case DEVMAN_ADD_CHILD_DEVICE: 147 // TODO add new device node to the device tree155 devman_add_child(callid, &call, driver); 148 156 break; 149 157 default:
Note:
See TracChangeset
for help on using the changeset viewer.