Changes in uspace/srv/hid/fb/serial_console.c [4f14e1f8:228e490] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/serial_console.c
r4f14e1f8 r228e490 39 39 40 40 #include <stdio.h> 41 #include <ipc/ipc.h> 41 42 #include <async.h> 42 43 #include <ipc/fb.h> … … 318 319 319 320 if (client_connected) { 320 async_answer_0(iid, ELIMIT);321 ipc_answer_0(iid, ELIMIT); 321 322 return; 322 323 } 323 324 324 325 client_connected = 1; 325 async_answer_0(iid, EOK);326 ipc_answer_0(iid, EOK); 326 327 327 328 /* Clear the terminal, set scrolling region … … 347 348 case IPC_M_PHONE_HUNGUP: 348 349 client_connected = 0; 349 async_answer_0(callid, EOK);350 ipc_answer_0(callid, EOK); 350 351 351 352 /* Exit thread */ … … 406 407 break; 407 408 case FB_GET_CSIZE: 408 async_answer_2(callid, EOK, scr_width, scr_height);409 ipc_answer_2(callid, EOK, scr_width, scr_height); 409 410 continue; 410 411 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 : 412 413 FB_CCAP_STYLE); 413 414 continue; … … 477 478 retval = ENOENT; 478 479 } 479 async_answer_0(callid, retval);480 ipc_answer_0(callid, retval); 480 481 } 481 482 }
Note:
See TracChangeset
for help on using the changeset viewer.