aboutsummaryrefslogtreecommitdiffstats
path: root/demos/various
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-07-15 06:48:58 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-07-15 06:48:58 +0000
commit2f43a43dcac2219fa5bdb195c599ccc69c63bffe (patch)
treea82ea8cdea12967fd2674676570bb32bbb4726af /demos/various
parentb2d83a917de7f50bf26b5c53866e467f156744e3 (diff)
downloadChibiOS-2f43a43dcac2219fa5bdb195c599ccc69c63bffe.tar.gz
ChibiOS-2f43a43dcac2219fa5bdb195c599ccc69c63bffe.tar.bz2
ChibiOS-2f43a43dcac2219fa5bdb195c599ccc69c63bffe.zip
Fixed bug #962.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12166 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'demos/various')
-rw-r--r--demos/various/RT-ARM7-GENERIC/chconf.h2
-rw-r--r--demos/various/RT-ARMCM0-GENERIC/cfg/chconf.h2
-rw-r--r--demos/various/RT-ARMCM4-GENERIC/cfg/chconf.h2
-rwxr-xr-xdemos/various/RT-Posix-Simulator/cfg/chconf.h2
-rw-r--r--demos/various/RT-Win32-Simulator/cfg/chconf.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/demos/various/RT-ARM7-GENERIC/chconf.h b/demos/various/RT-ARM7-GENERIC/chconf.h
index b38399aad..d8f495f73 100644
--- a/demos/various/RT-ARM7-GENERIC/chconf.h
+++ b/demos/various/RT-ARM7-GENERIC/chconf.h
@@ -578,7 +578,7 @@
* @details User initialization code added to the @p chSysInit() function
* just before interrupts are enabled globally.
*/
-#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \
+#define CH_CFG_SYSTEM_INIT_HOOK() { \
/* Add threads initialization code here.*/ \
}
diff --git a/demos/various/RT-ARMCM0-GENERIC/cfg/chconf.h b/demos/various/RT-ARMCM0-GENERIC/cfg/chconf.h
index b38399aad..d8f495f73 100644
--- a/demos/various/RT-ARMCM0-GENERIC/cfg/chconf.h
+++ b/demos/various/RT-ARMCM0-GENERIC/cfg/chconf.h
@@ -578,7 +578,7 @@
* @details User initialization code added to the @p chSysInit() function
* just before interrupts are enabled globally.
*/
-#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \
+#define CH_CFG_SYSTEM_INIT_HOOK() { \
/* Add threads initialization code here.*/ \
}
diff --git a/demos/various/RT-ARMCM4-GENERIC/cfg/chconf.h b/demos/various/RT-ARMCM4-GENERIC/cfg/chconf.h
index 28e3c152b..382dbe3a1 100644
--- a/demos/various/RT-ARMCM4-GENERIC/cfg/chconf.h
+++ b/demos/various/RT-ARMCM4-GENERIC/cfg/chconf.h
@@ -578,7 +578,7 @@
* @details User initialization code added to the @p chSysInit() function
* just before interrupts are enabled globally.
*/
-#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \
+#define CH_CFG_SYSTEM_INIT_HOOK() { \
/* Add threads initialization code here.*/ \
}
diff --git a/demos/various/RT-Posix-Simulator/cfg/chconf.h b/demos/various/RT-Posix-Simulator/cfg/chconf.h
index c719da041..c47fd40be 100755
--- a/demos/various/RT-Posix-Simulator/cfg/chconf.h
+++ b/demos/various/RT-Posix-Simulator/cfg/chconf.h
@@ -578,7 +578,7 @@
* @details User initialization code added to the @p chSysInit() function
* just before interrupts are enabled globally.
*/
-#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \
+#define CH_CFG_SYSTEM_INIT_HOOK() { \
/* Add threads initialization code here.*/ \
}
diff --git a/demos/various/RT-Win32-Simulator/cfg/chconf.h b/demos/various/RT-Win32-Simulator/cfg/chconf.h
index 7106562f0..edebb30d0 100644
--- a/demos/various/RT-Win32-Simulator/cfg/chconf.h
+++ b/demos/various/RT-Win32-Simulator/cfg/chconf.h
@@ -578,7 +578,7 @@
* @details User initialization code added to the @p chSysInit() function
* just before interrupts are enabled globally.
*/
-#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \
+#define CH_CFG_SYSTEM_INIT_HOOK() { \
/* Add threads initialization code here.*/ \
}