Changeset 25d7709 in mainline for genarch/src/i8042/i8042.c


Ignore:
Timestamp:
2006-03-13T20:08:16Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
631ca4d
Parents:
45d6add
Message:

Nicer ia32 interrupt handlers and structures holding interrupted context data.
Unify the name holding interrupted context data on all architectures to be istate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • genarch/src/i8042/i8042.c

    r45d6add r25d7709  
    266266};
    267267
    268 static void i8042_interrupt(int n, void *stack);
     268static void i8042_interrupt(int n, istate_t *istate);
    269269static void i8042_wait(void);
    270270
     
    272272void i8042_init(void)
    273273{
    274         exc_register(VECTOR_KBD, "i8042_interrupt", i8042_interrupt);
     274        exc_register(VECTOR_KBD, "i8042_interrupt", (iroutine) i8042_interrupt);
    275275        i8042_wait();
    276276        i8042_command_write(i8042_SET_COMMAND);
     
    289289 * @param stack Interrupted stack.
    290290 */
    291 void i8042_interrupt(int n, void *stack)
     291void i8042_interrupt(int n, istate_t *istate)
    292292{
    293293        __u8 x;
Note: See TracChangeset for help on using the changeset viewer.