Changes in / [7137fe3f:289fa65] in mainline
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r7137fe3f r289fa65 198 198 $(USPACE_PATH)/app/websrv/websrv \ 199 199 $(USPACE_PATH)/app/date/date \ 200 $(USPACE_PATH)/app/vdemo/vdemo \ 201 $(USPACE_PATH)/app/vlaunch/vlaunch \ 202 $(USPACE_PATH)/app/vterm/vterm \ 200 203 $(USPACE_PATH)/app/vdemo/vdemo 201 204 -
uspace/app/devctl/devctl.c
r7137fe3f r289fa65 151 151 rc = devman_fun_offline(funh); 152 152 if (rc != EOK) { 153 printf(NAME ": Failed to offline function '%s' (%s)\n", path, 154 str_error(rc)); 153 printf(NAME ": Failed to offline function '%s'.\n", path); 155 154 return rc; 156 155 } -
uspace/lib/drv/generic/remote_clock_dev.c
r7137fe3f r289fa65 85 85 if (!clock_dev_ops->time_get) { 86 86 /* The driver does not provide the time_get() functionality */ 87 async_ answer_0(cid, ENOTSUP);87 async_data_read_finalize(cid, NULL, 0); 88 88 async_answer_0(callid, ENOTSUP); 89 89 return; … … 94 94 if (rc != EOK) { 95 95 /* Some error occurred */ 96 async_ answer_0(cid, rc);96 async_data_read_finalize(cid, NULL, 0); 97 97 async_answer_0(callid, rc); 98 98 return;
Note:
See TracChangeset
for help on using the changeset viewer.