Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/fb/fb.c

    rffa2c8ef r228e490  
    4747#include <as.h>
    4848#include <ipc/fb.h>
     49#include <ipc/ipc.h>
    4950#include <ipc/ns.h>
    5051#include <ipc/services.h>
     
    10881089                        void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
    10891090                        shm_size = IPC_GET_ARG2(*call);
    1090                         if (async_answer_1(callid, EOK, (sysarg_t) dest)) {
     1091                        if (ipc_answer_1(callid, EOK, (sysarg_t) dest)) {
    10911092                                shm_id = 0;
    10921093                                return false;
     
    11651166       
    11661167        if (handled)
    1167                 async_answer_0(callid, retval);
     1168                ipc_answer_0(callid, retval);
    11681169        return handled;
    11691170}
     
    14441445        }
    14451446        if (handled)
    1446                 async_answer_0(callid, retval);
     1447                ipc_answer_0(callid, retval);
    14471448        return handled;
    14481449}
     
    14971498       
    14981499        if (handled)
    1499                 async_answer_0(callid, retval);
     1500                ipc_answer_0(callid, retval);
    15001501        return handled;
    15011502       
     
    15811582       
    15821583        if (client_connected) {
    1583                 async_answer_0(iid, ELIMIT);
     1584                ipc_answer_0(iid, ELIMIT);
    15841585                return;
    15851586        }
     
    15871588        /* Accept connection */
    15881589        client_connected = true;
    1589         async_answer_0(iid, EOK);
     1590        ipc_answer_0(iid, EOK);
    15901591       
    15911592        while (true) {
     
    16401641                                break;
    16411642                        }
    1642                         async_answer_0(callid, EOK);
     1643                        ipc_answer_0(callid, EOK);
    16431644                       
    16441645                        draw_char(vport, ch, col, row);
     
    16731674                        break;
    16741675                case FB_GET_CSIZE:
    1675                         async_answer_2(callid, EOK, vport->cols, vport->rows);
     1676                        ipc_answer_2(callid, EOK, vport->cols, vport->rows);
    16761677                        continue;
    16771678                case FB_GET_COLOR_CAP:
    1678                         async_answer_1(callid, EOK, FB_CCAP_RGB);
     1679                        ipc_answer_1(callid, EOK, FB_CCAP_RGB);
    16791680                        continue;
    16801681                case FB_SCROLL:
     
    17411742                        break;
    17421743                case FB_GET_RESOLUTION:
    1743                         async_answer_2(callid, EOK, screen.xres, screen.yres);
     1744                        ipc_answer_2(callid, EOK, screen.xres, screen.yres);
    17441745                        continue;
    17451746                case FB_POINTER_MOVE:
     
    17551756                        retval = ENOENT;
    17561757                }
    1757                 async_answer_0(callid, retval);
     1758                ipc_answer_0(callid, retval);
    17581759        }
    17591760}
Note: See TracChangeset for help on using the changeset viewer.