Changeset 287920f in mainline for kernel/arch/sparc64/src/console.c
- Timestamp:
- 2006-08-09T13:27:55Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d46c6ecd
- Parents:
- da74747
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/console.c
rda74747 r287920f 38 38 #include <genarch/fb/fb.h> 39 39 #include <arch/drivers/fb.h> 40 #include <arch/drivers/i8042.h> 41 #include <genarch/i8042/i8042.h> 40 41 #include <arch/drivers/kbd.h> 42 #ifdef CONFIG_Z8530 43 #include <genarch/kbd/z8530.h> 44 #endif 45 #ifdef CONFIG_16550A 46 #include <genarch/kbd/16550a.h> 47 #endif 48 42 49 #include <console/chardev.h> 43 50 #include <console/console.h> … … 72 79 73 80 while (1) { 74 i8042_poll(); 81 #ifdef CONFIG_Z8530 82 z8530_poll(); 83 #endif 84 #ifdef CONFIG_16550A 85 16550a_poll(); 86 #endif 75 87 thread_usleep(KEYBOARD_POLL_PAUSE); 76 88 }
Note:
See TracChangeset
for help on using the changeset viewer.