Changeset 666773c in mainline for kernel/arch/ia64/src/ski/ski.c


Ignore:
Timestamp:
2008-12-31T15:33:29Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9805cde
Parents:
d8c0dc5
Message:

Humanitarian facelift for ia64.

File:
1 edited

Legend:

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

    rd8c0dc5 r666773c  
    119119        while(!(ch = ski_getchar()))
    120120                ;
    121         if(ch == '\r')
     121        if (ch == '\r')
    122122                ch = '\n';
    123123        return (char) ch;
     
    144144                ch = '\n';
    145145        if (ch) {
    146                 if (ski_kbd_irq.notif_cfg.notify && ski_kbd_irq.notif_cfg.answerbox) {
     146                if (ski_kbd_irq.notif_cfg.notify &&
     147                    ski_kbd_irq.notif_cfg.answerbox) {
    147148                        chardev_push_character(&ski_uconsole, ch);
    148149                        ipc_irq_send_notif(&ski_kbd_irq);
     
    157158
    158159        if (last) {
    159                 if (ski_kbd_irq.notif_cfg.notify && ski_kbd_irq.notif_cfg.answerbox) {
     160                if (ski_kbd_irq.notif_cfg.notify &&
     161                    ski_kbd_irq.notif_cfg.answerbox) {
    160162                        chardev_push_character(&ski_uconsole, 0);
    161163                        ipc_irq_send_notif(&ski_kbd_irq);
Note: See TracChangeset for help on using the changeset viewer.