Changeset 8adafa0 in mainline for arch/ia64/src/ski/ski.c


Ignore:
Timestamp:
2006-06-04T17:00:26Z (19 years ago)
Author:
Jakub Vana <jakub.vana@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fe19611
Parents:
eb3d379
Message:

Ia64 keyboard extension

File:
1 edited

Legend:

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

    reb3d379 r8adafa0  
    109109{
    110110        char ch;
     111        static char last;
    111112
    112113        if (kb_disable)
     
    123124                else {
    124125                        chardev_push_character(&ski_console, ch);
     126                }       
     127                last = ch;             
     128                return;
     129        }       
    125130
     131        if (last){
     132                if(kbd_uspace){
     133                        chardev_push_character(&ski_uconsole, 0);
     134                        virtual_interrupt(IRQ_KBD,NULL);
     135                }
     136                else {
    126137                }       
    127                
     138                last = 0;               
    128139        }       
     140
    129141}
    130142
Note: See TracChangeset for help on using the changeset viewer.