[PATCH 14/17] psim/include/tm27.h: Fix not a prototype warnings
Joel Sherrill
joel at rtems.org
Wed Aug 29 20:15:27 UTC 2018
---
bsps/powerpc/psim/include/tm27.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/bsps/powerpc/psim/include/tm27.h b/bsps/powerpc/psim/include/tm27.h
index 3a41283..8e20a3e 100644
--- a/bsps/powerpc/psim/include/tm27.h
+++ b/bsps/powerpc/psim/include/tm27.h
@@ -25,19 +25,19 @@
#define MUST_WAIT_FOR_INTERRUPT 1
-void nullFunc() {}
+static void nullFunc(void) {}
static rtems_irq_connect_data clockIrqData = {BSP_DECREMENTER,
0,
(rtems_irq_enable)nullFunc,
(rtems_irq_disable)nullFunc,
(rtems_irq_is_enabled) nullFunc};
-void Install_tm27_vector(void (*_handler)())
+RTEMS_INLINE_ROUTINE void Install_tm27_vector(void (*_handler)())
{
clockIrqData.hdl = _handler;
if (!BSP_install_rtems_irq_handler (&clockIrqData)) {
- printk("Error installing clock interrupt handler!\n");
- rtems_fatal_error_occurred(1);
+ printk("Error installing clock interrupt handler!\n");
+ rtems_fatal_error_occurred(1);
}
}
--
1.8.3.1
More information about the devel
mailing list