summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c
diff options
context:
space:
mode:
authorThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-10-21 13:24:35 +0000
committerThomas Doerfler <Thomas.Doerfler@embedded-brains.de>2009-10-21 13:24:35 +0000
commit60e5832e232bb788b67bc1f7678dbde6bdf9f306 (patch)
tree44c0c807bd09ebad3a3924d0738a6201f0b575c3 /c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c
parent * rtems/powerpc/registers.h: Added defines DEAR_BOOKE and DEAR_405. (diff)
downloadrtems-60e5832e232bb788b67bc1f7678dbde6bdf9f306.tar.bz2
interrupt handler type change
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c b/c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c
index dc7adc136e..74167711f5 100644
--- a/c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c
+++ b/c/src/lib/libcpu/powerpc/mpc55xx/edma/edma.c
@@ -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;