[PATCH 13/17] mvme5500/include/tm27.h: Fix not a prototype warnings

Joel Sherrill joel at rtems.org
Wed Aug 29 20:15:26 UTC 2018


---
 bsps/powerpc/mvme5500/include/tm27.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bsps/powerpc/mvme5500/include/tm27.h b/bsps/powerpc/mvme5500/include/tm27.h
index 2a80618..bf255ae 100644
--- a/bsps/powerpc/mvme5500/include/tm27.h
+++ b/bsps/powerpc/mvme5500/include/tm27.h
@@ -25,14 +25,14 @@
 
 #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)) {
-- 
1.8.3.1




More information about the devel mailing list