Changeset 6095342 in mainline for arch/ppc32/src/console.c
- Timestamp:
- 2005-12-10T01:28:08Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aace6624
- Parents:
- fcfac420
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/src/console.c
rfcfac420 r6095342 29 29 #include <putchar.h> 30 30 #include <genarch/ofw/ofw.h> 31 #include <console/chardev.h> 32 #include <console/console.h> 31 33 32 34 /** Print one character. … … 34 36 * @param ch Character to be printed. 35 37 */ 36 void putchar(const char ch)38 static void ofw_write(chardev_t *d, const char ch) 37 39 { 38 40 ofw_putchar(ch); 39 41 } 42 43 chardev_t ofw_console; 44 static chardev_operations_t ofw_ops = { 45 .write = ofw_write 46 }; 47 48 /** Initialize console to use ofw output */ 49 void console_init(void) 50 { 51 chardev_initialize("ofw_out", &ofw_console, &ofw_ops); 52 stdout = &ofw_console; 53 }
Note:
See TracChangeset
for help on using the changeset viewer.