Changes in / [7137fe3f:289fa65] in mainline


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r7137fe3f r289fa65  
    198198        $(USPACE_PATH)/app/websrv/websrv \
    199199        $(USPACE_PATH)/app/date/date \
     200        $(USPACE_PATH)/app/vdemo/vdemo \
     201        $(USPACE_PATH)/app/vlaunch/vlaunch \
     202        $(USPACE_PATH)/app/vterm/vterm \
    200203        $(USPACE_PATH)/app/vdemo/vdemo
    201204
  • uspace/app/devctl/devctl.c

    r7137fe3f r289fa65  
    151151        rc = devman_fun_offline(funh);
    152152        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);
    155154                return rc;
    156155        }
  • uspace/lib/drv/generic/remote_clock_dev.c

    r7137fe3f r289fa65  
    8585        if (!clock_dev_ops->time_get) {
    8686                /* The driver does not provide the time_get() functionality */
    87                 async_answer_0(cid, ENOTSUP);
     87                async_data_read_finalize(cid, NULL, 0);
    8888                async_answer_0(callid, ENOTSUP);
    8989                return;
     
    9494        if (rc != EOK) {
    9595                /* Some error occurred */
    96                 async_answer_0(cid, rc);
     96                async_data_read_finalize(cid, NULL, 0);
    9797                async_answer_0(callid, rc);
    9898                return;
Note: See TracChangeset for help on using the changeset viewer.