Changes in uspace/srv/devman/driver.c [1c635d6:1db5669] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/driver.c
r1c635d6 r1db5669 40 40 #include <str_error.h> 41 41 #include <stdio.h> 42 #include <task.h>43 42 44 43 #include "dev.h" … … 291 290 log_msg(LOG_DEFAULT, LVL_DEBUG, "start_driver(drv=\"%s\")", drv->name); 292 291 293 rc = task_spawnl(NULL, NULL,drv->binary_path, drv->binary_path, NULL);292 rc = task_spawnl(NULL, drv->binary_path, drv->binary_path, NULL); 294 293 if (rc != EOK) { 295 294 log_msg(LOG_DEFAULT, LVL_ERROR, "Spawning driver `%s' (%s) failed: %s.",
Note:
See TracChangeset
for help on using the changeset viewer.