[rtems commit] motorola_powerpc/include/tm27.h: Fix prototype warning
Joel Sherrill
joel at rtems.org
Mon Aug 13 15:44:44 UTC 2018
Module: rtems
Branch: master
Commit: ebd19374c527bac8246e3e4dd5ff13bb51e2e0ba
Changeset: http://git.rtems.org/rtems/commit/?id=ebd19374c527bac8246e3e4dd5ff13bb51e2e0ba
Author: Joel Sherrill <joel at rtems.org>
Date: Fri Aug 10 08:21:36 2018 -0500
motorola_powerpc/include/tm27.h: Fix prototype warning
---
bsps/powerpc/motorola_powerpc/include/tm27.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/bsps/powerpc/motorola_powerpc/include/tm27.h b/bsps/powerpc/motorola_powerpc/include/tm27.h
index 81eb55a..4d616cb 100644
--- a/bsps/powerpc/motorola_powerpc/include/tm27.h
+++ b/bsps/powerpc/motorola_powerpc/include/tm27.h
@@ -25,13 +25,13 @@
#define MUST_WAIT_FOR_INTERRUPT 1
-void nullFunc() {}
+void nullFunc(void) {}
static rtems_irq_connect_data clockIrqData = {BSP_DECREMENTER,
0,
- (rtems_irq_enable)nullFunc,
- (rtems_irq_disable)nullFunc,
+ (rtems_irq_enable) nullFunc,
+ (rtems_irq_disable) nullFunc,
(rtems_irq_is_enabled) nullFunc};
-void Install_tm27_vector(void (*_handler)())
+static void Install_tm27_vector(void (*_handler)(void))
{
clockIrqData.hdl = _handler;
if (!BSP_install_rtems_irq_handler (&clockIrqData)) {
More information about the vc
mailing list