aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2015-09-07 08:51:25 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2015-09-07 08:51:25 +0000
commit8718997f87fb8f05cd6ecf6a2afd2a8c7121438d (patch)
treea2b59189c0decb24852fdcb70e217194ed96cd42 /os/rt
parentfe349ebe3a8b41df86ee70d89fc4c8cbf85f3baa (diff)
downloadChibiOS-8718997f87fb8f05cd6ecf6a2afd2a8c7121438d.tar.gz
ChibiOS-8718997f87fb8f05cd6ecf6a2afd2a8c7121438d.tar.bz2
ChibiOS-8718997f87fb8f05cd6ecf6a2afd2a8c7121438d.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8284 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt')
-rw-r--r--os/rt/ports/ARMCMx/cmsis_os/cmsis_os.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/rt/ports/ARMCMx/cmsis_os/cmsis_os.h b/os/rt/ports/ARMCMx/cmsis_os/cmsis_os.h
index 63a326636..23f12a0b6 100644
--- a/os/rt/ports/ARMCMx/cmsis_os/cmsis_os.h
+++ b/os/rt/ports/ARMCMx/cmsis_os/cmsis_os.h
@@ -338,7 +338,7 @@ const osTimerDef_t os_timer_def_##name = { \
/**
* @brief Define a Mutex.
*/
-#if defined (osObjectsExternal)
+#if defined(osObjectsExternal)
#define osMutexDef(name) extern const osMutexDef_t os_mutex_def_##name
#else
#define osMutexDef(name) const osMutexDef_t os_mutex_def_##name = {0}
@@ -352,7 +352,7 @@ const osTimerDef_t os_timer_def_##name = { \
/**
* @brief Define a Semaphore.
*/
-#if defined (osObjectsExternal)
+#if defined(osObjectsExternal)
#define osSemaphoreDef(name) \
extern const osSemaphoreDef_t os_semaphore_def_##name
#else // define the object
@@ -391,7 +391,7 @@ const osPoolDef_t os_pool_def_##name = { \
/**
* @brief Define a Message Queue.
*/
-#if defined (osObjectsExternal)
+#if defined(osObjectsExternal)
#define osMessageQDef(name, queue_sz, type) \
extern const osMessageQDef_t os_messageQ_def_##name
#else