[rtems commit] psim/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:    5da159312cd7b011228ef9ba78464bd6f6c3cb4f
Changeset: http://git.rtems.org/rtems/commit/?id=5da159312cd7b011228ef9ba78464bd6f6c3cb4f

Author:    Joel Sherrill <joel at rtems.org>
Date:      Wed Aug 29 12:39:17 2018 -0500

psim/include/tm27.h: Fix not a prototype warnings

---

 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);
   }
 }
 



More information about the vc mailing list