bsps: Avoid rtems_irq_hdl_param type usage

Not every clock interrupt service routine is installed with this API.
Remove also the prototype to allow drivers to make this routine static.
This commit is contained in:
Sebastian Huber
2012-04-20 15:23:44 +02:00
parent 688fcc14db
commit 37f938d708

View File

@@ -57,8 +57,7 @@ void Clock_exit( void );
* Return values: NONE
*/
#ifdef BSP_FEATURE_IRQ_EXTENSION
void Clock_isr(rtems_irq_hdl_param arg);
void Clock_isr(rtems_irq_hdl_param arg)
void Clock_isr(void *arg)
{
#else
rtems_isr Clock_isr(rtems_vector_number vector);