forked from Imagelibrary/rtems
interrupt handler type change
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user