forked from Imagelibrary/rtems
gen5200/include/tm27.h: Fix prototype warning
This commit is contained in:
@@ -26,14 +26,14 @@
|
|||||||
|
|
||||||
#define MUST_WAIT_FOR_INTERRUPT 1
|
#define MUST_WAIT_FOR_INTERRUPT 1
|
||||||
|
|
||||||
void nullFunc() {}
|
void nullFunc(void) {}
|
||||||
|
|
||||||
static rtems_irq_connect_data clockIrqData = {BSP_DECREMENTER,
|
static rtems_irq_connect_data clockIrqData = {BSP_DECREMENTER,
|
||||||
0,
|
0,
|
||||||
(rtems_irq_enable) nullFunc,
|
(rtems_irq_enable) nullFunc,
|
||||||
(rtems_irq_disable) nullFunc,
|
(rtems_irq_disable) nullFunc,
|
||||||
(rtems_irq_is_enabled) nullFunc};
|
(rtems_irq_is_enabled) nullFunc};
|
||||||
void Install_tm27_vector(void (*_handler)())
|
static void Install_tm27_vector(void (*_handler)(void))
|
||||||
{
|
{
|
||||||
clockIrqData.hdl = _handler;
|
clockIrqData.hdl = _handler;
|
||||||
if (!BSP_install_rtems_irq_handler (&clockIrqData)) {
|
if (!BSP_install_rtems_irq_handler (&clockIrqData)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user