Changeset 8b4be29 in mainline for kernel/arch/sparc64/src/console.c
- Timestamp:
- 2006-08-09T18:33:32Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5f24137
- Parents:
- d46c6ecd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/console.c
rd46c6ecd r8b4be29 43 43 #include <genarch/kbd/z8530.h> 44 44 #endif 45 #ifdef CONFIG_ 16550A46 #include <genarch/kbd/ 16550a.h>45 #ifdef CONFIG_NS16550 46 #include <genarch/kbd/ns16550.h> 47 47 #endif 48 48 … … 65 65 bootinfo.screen.bpp, bootinfo.screen.scanline, true); 66 66 67 #ifdef KBD_ADDR_OVRD 68 if (!bootinfo.keyboard.addr) 69 bootinfo.keyboard.addr = KBD_ADDR_OVRD; 70 #endif 71 67 72 if (bootinfo.keyboard.addr) 68 73 kbd_init(); … … 82 87 z8530_poll(); 83 88 #endif 84 #ifdef CONFIG_ 16550A85 16550a_poll();89 #ifdef CONFIG_NS16550 90 ns16550_poll(); 86 91 #endif 87 92 thread_usleep(KEYBOARD_POLL_PAUSE);
Note:
See TracChangeset
for help on using the changeset viewer.