Changeset 72f5866d in mainline for arch/ia64/src/ski/ski.c
- Timestamp:
- 2005-12-10T15:08:51Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5bb20ec
- Parents:
- 6e716a59
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/src/ski/ski.c
r6e716a59 r72f5866d 34 34 static bool kb_disable; 35 35 36 static void ski_write(chardev_t *d, const char ch); 37 static __s32 ski_getchar(void); 38 36 39 /** Display character on debug console 37 40 * … … 39 42 * display character on debug console. 40 43 * 41 * @param ch Character to be printed. 44 * @param d Character device. 45 * @param ch Character to be printed. 42 46 */ 43 47 void ski_write(chardev_t *d, const char ch) … … 52 56 ); 53 57 54 if (ch == '\n') ski_putchar('\r'); 58 if (ch == '\n') 59 ski_write(d, '\r'); 55 60 } 56 61 … … 97 102 98 103 /* Called from getc(). */ 99 static void ski_kb_enable(chardev_t * )104 static void ski_kb_enable(chardev_t *d) 100 105 { 101 106 kb_disable = false;
Note:
See TracChangeset
for help on using the changeset viewer.