Ignore:
File:
1 edited

Legend:

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

    r4f14e1f8 r228e490  
    3939
    4040#include <stdio.h>
     41#include <ipc/ipc.h>
    4142#include <async.h>
    4243#include <ipc/fb.h>
     
    318319       
    319320        if (client_connected) {
    320                 async_answer_0(iid, ELIMIT);
     321                ipc_answer_0(iid, ELIMIT);
    321322                return;
    322323        }
    323324       
    324325        client_connected = 1;
    325         async_answer_0(iid, EOK);
     326        ipc_answer_0(iid, EOK);
    326327       
    327328        /* Clear the terminal, set scrolling region
     
    347348                case IPC_M_PHONE_HUNGUP:
    348349                        client_connected = 0;
    349                         async_answer_0(callid, EOK);
     350                        ipc_answer_0(callid, EOK);
    350351                       
    351352                        /* Exit thread */
     
    406407                        break;
    407408                case FB_GET_CSIZE:
    408                         async_answer_2(callid, EOK, scr_width, scr_height);
     409                        ipc_answer_2(callid, EOK, scr_width, scr_height);
    409410                        continue;
    410411                case FB_GET_COLOR_CAP:
    411                         async_answer_1(callid, EOK, color ? FB_CCAP_INDEXED :
     412                        ipc_answer_1(callid, EOK, color ? FB_CCAP_INDEXED :
    412413                            FB_CCAP_STYLE);
    413414                        continue;
     
    477478                        retval = ENOENT;
    478479                }
    479                 async_answer_0(callid, retval);
     480                ipc_answer_0(callid, retval);
    480481        }
    481482}
Note: See TracChangeset for help on using the changeset viewer.