Changeset 73d8600 in mainline for uspace/srv/hid/output/output.c
- Timestamp:
- 2016-12-27T13:29:31Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bfa4ffa
- Parents:
- fd384d6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/output.c
rfd384d6 r73d8600 34 34 #include <task.h> 35 35 #include <ipc/output.h> 36 #include <config.h> 36 37 #include "port/ega.h" 37 38 #include "port/kchar.h" … … 476 477 } 477 478 478 ega_init(); 479 kchar_init(); 480 niagara_init(); 481 ski_init(); 482 chardev_init(); 479 if (!config_key_exists("console")) { 480 ega_init(); 481 kchar_init(); 482 niagara_init(); 483 ski_init(); 484 } else { 485 chardev_init(); 486 } 483 487 484 488 printf("%s: Accepting connections\n", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.