Changeset d552ab9 in mainline


Ignore:
Timestamp:
2006-06-16T19:28:53Z (18 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1f83244
Parents:
2ce520c
Message:

Turn off mouse pointer on fb events (should be probably somewhat more selective).

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • fb/fb.c

    r2ce520c rd552ab9  
    10601060                        callid = async_get_call(&call);
    10611061
     1062                mouse_hide();
    10621063                if (!callid) {
    10631064                        cursor_blink(vport);
  • kbd/arch/ia32/src/kbd.c

    r2ce520c rd552ab9  
    432432        /* Enable kbd */
    433433        ipc_register_irq(KBD_IRQ, &i8042_kbd);
     434        /* Register for irq restart */
     435        ipc_register_irq(IPC_IRQ_KBDRESTART, NULL);
    434436
    435437        int newcontrol = i8042_KBD_IE | i8042_KBD_TRANSLATE;
     
    449451{
    450452        int status = IPC_GET_ARG1(*call);
     453
     454        if (IPC_GET_METHOD(*call) == IPC_IRQ_KBDRESTART) {
     455                kbd_arch_init();
     456                return 1;
     457        }
    451458
    452459        if ((status & i8042_MOUSE_DATA))
Note: See TracChangeset for help on using the changeset viewer.