Changeset b3e8c90 in mainline for kernel/arch/sparc64/src/console.c
- Timestamp:
- 2006-08-01T11:24:27Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e386cbf
- Parents:
- c049309
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/console.c
rc049309 rb3e8c90 55 55 stdin = NULL; 56 56 57 kbd_init(); 57 if (bootinfo.keyboard.addr) 58 kbd_init(); 59 58 60 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, 59 61 bootinfo.screen.bpp, bootinfo.screen.scanline); … … 66 68 void kkbdpoll(void *arg) 67 69 { 70 if (!bootinfo.keyboard.addr) 71 return; 72 68 73 while (1) { 69 74 i8042_poll();
Note:
See TracChangeset
for help on using the changeset viewer.