Changes in uspace/drv/infrastructure/rootpc/rootpc.c [5203e256:0c0f823b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/infrastructure/rootpc/rootpc.c
r5203e256 r0c0f823b 63 63 } rootpc_fun_t; 64 64 65 static int rootpc_ add_device(ddf_dev_t *dev);65 static int rootpc_dev_add(ddf_dev_t *dev); 66 66 static void root_pc_init(void); 67 67 68 68 /** The root device driver's standard operations. */ 69 69 static driver_ops_t rootpc_ops = { 70 . add_device = &rootpc_add_device70 .dev_add = &rootpc_dev_add 71 71 }; 72 72 … … 175 175 * @return Zero on success, negative error number otherwise. 176 176 */ 177 static int rootpc_ add_device(ddf_dev_t *dev)178 { 179 ddf_msg(LVL_DEBUG, "rootpc_ add_device, device handle = %d",177 static int rootpc_dev_add(ddf_dev_t *dev) 178 { 179 ddf_msg(LVL_DEBUG, "rootpc_dev_add, device handle = %d", 180 180 (int)dev->handle); 181 181
Note:
See TracChangeset
for help on using the changeset viewer.