Clock Driver Shell - ISR handler prototype should follow port interrupt model

The prototype for the clock driver tick isr varies based upon
the interrupt model used by the port. This driver was checking
solely upon a flag set by the BSP.
This commit is contained in:
Joel Sherrill
2012-05-10 08:01:38 -05:00
parent 42547e07cb
commit 314fab552d
+2 -1
View File
@@ -56,7 +56,8 @@ void Clock_exit( void );
*
* Return values: NONE
*/
#ifdef BSP_FEATURE_IRQ_EXTENSION
#if defined(BSP_FEATURE_IRQ_EXTENSION) || \
(CPU_SIMPLE_VECTORED_INTERRUPTS != TRUE)
void Clock_isr(void *arg)
{
#else