Changeset 132ab5d1 in mainline for uspace/srv/hid/output/output.c
- Timestamp:
- 2018-01-30T03:20:45Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a6cc679
- Parents:
- 8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/srv/hid/output/output.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/output.c
r8bfb163 r132ab5d1 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.
