Changeset af9a7c5 in mainline for arch/mips32/src/drivers/arc.c
- Timestamp:
- 2005-12-12T15:38:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 93b84b3
- Parents:
- c0b7f00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/drivers/arc.c
rc0b7f00 raf9a7c5 36 36 #include <interrupt.h> 37 37 #include <align.h> 38 #include <console/console.h> 38 39 39 40 /* This is a good joke, SGI HAS different types than NT bioses... */ … … 247 248 } 248 249 249 250 chardev_t * arc_console(void) 250 void arc_console(void) 251 251 { 252 252 kbd_polling_enabled = true; … … 254 254 chardev_initialize("arc_console", &console, &arc_ops); 255 255 old_timer = int_register(TIMER_IRQ, "arc_kb_poll", timer_replace); 256 return &console; 256 stdin = &console; 257 stdout = &console; 257 258 } 258 259
Note:
See TracChangeset
for help on using the changeset viewer.