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