Fix compilation with CONFIG_DYNAMIC_INT_STUBS
Change-Id: I153747d441e8efe7a2941b01ef0cedda7e58237c Signed-off-by: Oleg Zhurakivskyy <oleg.zhurakivskyy@intel.com>
This commit is contained in:
parent
b70ba38325
commit
cf59dda4a5
1 changed files with 2 additions and 2 deletions
|
@ -239,7 +239,7 @@ static inline void _i8253CounterOneShot(
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
*
|
*
|
||||||
* _i8253IntHandlerPeriodic - system clock periodic tick handler
|
* _timer_int_handler - system clock periodic tick handler
|
||||||
*
|
*
|
||||||
* This routine handles the system clock periodic tick interrupt. A TICK_EVENT
|
* This routine handles the system clock periodic tick interrupt. A TICK_EVENT
|
||||||
* event is pushed onto the microkernel stack.
|
* event is pushed onto the microkernel stack.
|
||||||
|
@ -502,7 +502,7 @@ void timer_driver(int priority /* priority parameter ignored by this driver */
|
||||||
|
|
||||||
(void)irq_connect(PIT_INT_LVL,
|
(void)irq_connect(PIT_INT_LVL,
|
||||||
PIT_INT_PRI,
|
PIT_INT_PRI,
|
||||||
_i8253IntHandlerPeriodic,
|
_timer_int_handler,
|
||||||
0,
|
0,
|
||||||
_i8253_interrupt_stub);
|
_i8253_interrupt_stub);
|
||||||
#endif /* CONFIG_DYNAMIC_INT_STUBS */
|
#endif /* CONFIG_DYNAMIC_INT_STUBS */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue