[rtems commit] mvme5500/include/tm27.h: Fix not a prototype warnings
Joel Sherrill
joel at rtems.org
Thu Aug 30 13:39:24 UTC 2018
Module: rtems
Branch: master
Commit: a8d3f10f6fe8548bc75bc1747c51ee1774f9996a
Changeset: http://git.rtems.org/rtems/commit/?id=a8d3f10f6fe8548bc75bc1747c51ee1774f9996a
Author: Joel Sherrill <joel at rtems.org>
Date: Wed Aug 29 12:39:01 2018 -0500
mvme5500/include/tm27.h: Fix not a prototype warnings
---
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)) {
More information about the vc
mailing list