interrupt handler type change

This commit is contained in:
Thomas Doerfler
2009-10-21 13:24:35 +00:00
parent 2067679bb3
commit 60e5832e23
32 changed files with 159 additions and 247 deletions

View File

@@ -1,3 +1,8 @@
2009-10-21 Sebastian Huber <sebastian.huber@embedded-brains.de>
* mpc55xx/edma/edma.c, mpc55xx/esci/esci.c: Update for interrupt
handler type change.
2009-10-16 Jennifer Averett <jennifer.averett@OARcorp.com>
* mpc6xx/mmu/bat.c: Resolved bug: It is not an overlap if the batindex

View File

@@ -47,7 +47,7 @@ static uint64_t mpc55xx_edma_channel_occupation = 0;
static rtems_chain_control mpc55xx_edma_channel_chain;
static void mpc55xx_edma_interrupt_handler( rtems_vector_number vector, void *arg)
static void mpc55xx_edma_interrupt_handler( void *arg)
{
mpc55xx_edma_channel_entry *e = (mpc55xx_edma_channel_entry *) arg;
@@ -63,7 +63,7 @@ static void mpc55xx_edma_interrupt_handler( rtems_vector_number vector, void *ar
e->done( e, 0);
}
static void mpc55xx_edma_interrupt_error_handler( rtems_vector_number vector, void *arg)
static void mpc55xx_edma_interrupt_error_handler( void *arg)
{
rtems_chain_control *chain = &mpc55xx_edma_channel_chain;
rtems_chain_node *node = chain->first;

View File

@@ -410,7 +410,7 @@ static int mpc55xx_esci_termios_set_attributes( int minor, const struct termios
/**
* @brief Interrupt handler.
*/
static void mpc55xx_esci_termios_interrupt_handler( rtems_vector_number vector, void *arg)
static void mpc55xx_esci_termios_interrupt_handler( void *arg)
{
mpc55xx_esci_driver_entry *e = (mpc55xx_esci_driver_entry *) arg;
volatile union ESCI_SR_tag *status = &e->regs->SR;