Changeset adb2ebf8 in mainline for arch/ia64/src/ski/ski.c


Ignore:
Timestamp:
2005-12-10T16:07:08Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f7f6f25
Parents:
91c78c9
Message:

Fix ppc32 and sparc64 to compile again.
Fix sparc64 to function again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia64/src/ski/ski.c

    r91c78c9 radb2ebf8  
    3434static bool kb_disable;
    3535
    36 static void ski_write(chardev_t *d, const char ch);
     36static void ski_putchar(chardev_t *d, const char ch);
    3737static __s32 ski_getchar(void);
    3838
     
    4545 * @param ch Character to be printed.
    4646 */
    47 void ski_write(chardev_t *d, const char ch)
     47void ski_putchar(chardev_t *d, const char ch)
    4848{
    4949        __asm__ (
     
    5757       
    5858        if (ch == '\n')
    59                 ski_write(d, '\r');
     59                ski_putchar(d, '\r');
    6060}
    6161
     
    117117        .resume = ski_kb_enable,
    118118        .suspend = ski_kb_disable,
    119         .write = ski_write
     119        .write = ski_putchar
    120120};
    121121
Note: See TracChangeset for help on using the changeset viewer.