Changeset 25d7709 in mainline for arch/mips32/src/drivers


Ignore:
Timestamp:
2006-03-13T20:08:16Z (20 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.

Location:
arch/mips32/src/drivers
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/drivers/arc.c

    r45d6add r25d7709  
    350350iroutine old_timer;
    351351/** Do polling on timer interrupt */
    352 static void timer_replace(int n, void *stack)
     352static void timer_replace(int n, istate_t *istate)
    353353{
    354354        arc_keyboard_poll();
    355         old_timer(n, stack);
     355        old_timer(n, istate);
    356356        arc_keyboard_poll();
    357357}
  • arch/mips32/src/drivers/msim.c

    r45d6add r25d7709  
    8484
    8585/** Process keyboard interrupt. */
    86 static void msim_interrupt(int n, void *stack)
     86static void msim_interrupt(int n, istate_t *istate)
    8787{
    8888        char ch = 0;
  • arch/mips32/src/drivers/serial.c

    r45d6add r25d7709  
    113113iroutine old_timer;
    114114/** Do polling on timer interrupt */
    115 static void timer_replace(int n, void *stack)
     115static void timer_replace(int n, istate_t *istate)
    116116{
    117         old_timer(n, stack);
    118         serial_interrupt(n, stack);
     117        old_timer(n, istate);
     118        serial_interrupt(n, istate);
    119119}
    120120
Note: See TracChangeset for help on using the changeset viewer.