summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68340/timer/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68340/timer/timer.c')
-rw-r--r--c/src/lib/libbsp/m68k/gen68340/timer/timer.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/c/src/lib/libbsp/m68k/gen68340/timer/timer.c b/c/src/lib/libbsp/m68k/gen68340/timer/timer.c
index a2bc2186fb..a6baa5d003 100644
--- a/c/src/lib/libbsp/m68k/gen68340/timer/timer.c
+++ b/c/src/lib/libbsp/m68k/gen68340/timer/timer.c
@@ -191,7 +191,6 @@ void Fifo_Full_Timer_initialize (void)
rtems_isr_entry old_handler;
rtems_status_code sc;
- proc_ptr ignored;
extern void _Debug_ISR_Handler_Console(void);
sc = rtems_interrupt_catch (InterruptHandler,
@@ -201,7 +200,10 @@ void Fifo_Full_Timer_initialize (void)
/* uncomment this if you want to pass control to your own ISR handler
it may be usefull to do so to check for performances with an oscilloscope */
/*
- _CPU_ISR_install_raw_handler( TIMER1_VECTOR, _Debug_ISR_Handler_Console, &ignored );
+ {
+ proc_ptr ignored;
+ _CPU_ISR_install_raw_handler( TIMER1_VECTOR, _Debug_ISR_Handler_Console, &ignored );
+ }
*/
}
} /* fifo full mode on a uart */