Changes in uspace/srv/hid/output/output.c [8d2dd7f2:38d150e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/output.c
r8d2dd7f2 r38d150e 27 27 */ 28 28 29 #include <errno.h> 29 30 #include <stddef.h> 30 #include <errno.h> 31 #include <malloc.h> 31 #include <stdlib.h> 32 32 #include <macros.h> 33 33 #include <as.h> … … 36 36 #include <config.h> 37 37 #include "port/ega.h" 38 #include "port/kchar.h"39 #include "port/niagara.h"40 #include "port/ski.h"41 38 #include "port/chardev.h" 42 39 #include "output.h" … … 222 219 dev->ops.cursor_update(dev, prev_col, prev_row, col, row, 223 220 visible); 221 dev->ops.flush(dev); 222 224 223 } 225 224 … … 345 344 } 346 345 } 347 } 346 347 dev->ops.flush(dev); 348 } 349 348 350 349 351 async_answer_0(iid, EOK); … … 383 385 } 384 386 } 385 } 386 387 dev->ops.flush(dev); 388 389 } 387 390 async_answer_0(iid, EOK); 388 391 } … … 479 482 if (!config_key_exists("console")) { 480 483 ega_init(); 481 kchar_init(); 482 niagara_init(); 483 ski_init(); 484 } else { 485 chardev_init(); 486 } 484 } 485 486 chardev_init(); 487 487 488 488 printf("%s: Accepting connections\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.