diff --git a/libcpu/arm/at91sam926x/interrupt.c b/libcpu/arm/at91sam926x/interrupt.c index bcf5fe93d10604952302973f19d8cdafef0ac42b..206444b3aae2f918390d05ccc72fa78938f68236 100755 --- a/libcpu/arm/at91sam926x/interrupt.c +++ b/libcpu/arm/at91sam926x/interrupt.c @@ -305,10 +305,12 @@ void rt_hw_interrupt_umask(int irq) /** * This function will install a interrupt service routine to a interrupt. * @param vector the interrupt number - * @param new_handler the interrupt service routine to be installed - * @param old_handler the old interrupt service routine + * @param handler the interrupt service routine to be installed + * @param param the interrupt service function parameter + * @param name the interrupt name */ -void rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, void *param, char *name) +void rt_hw_interrupt_install(int vector, rt_isr_handler_t handler, + void *param, char *name) { if(vector < MAX_HANDLERS) {