diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-04-26 09:07:15 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-04-26 09:07:15 +0000 |
commit | 1d4abe72f00bb45dd205c2aa4580ba8ba2a98882 (patch) | |
tree | 51c0f2da9719324c483875593de05af34648d4b1 | |
parent | b6c27614827de128c95b6582461999e298d2fb68 (diff) | |
download | ChibiOS-1d4abe72f00bb45dd205c2aa4580ba8ba2a98882.tar.gz ChibiOS-1d4abe72f00bb45dd205c2aa4580ba8ba2a98882.tar.bz2 ChibiOS-1d4abe72f00bb45dd205c2aa4580ba8ba2a98882.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5617 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/ports/GCC/PPC/SPC560BCxx/vectors.h | 4 | ||||
-rw-r--r-- | os/ports/GCC/PPC/SPC560Pxx/vectors.h | 4 | ||||
-rw-r--r-- | os/ports/GCC/PPC/SPC563Mxx/vectors.h | 4 | ||||
-rw-r--r-- | os/ports/GCC/PPC/SPC564Axx/vectors.h | 4 | ||||
-rw-r--r-- | os/ports/GCC/PPC/SPC56ELxx/vectors.h | 4 |
5 files changed, 20 insertions, 0 deletions
diff --git a/os/ports/GCC/PPC/SPC560BCxx/vectors.h b/os/ports/GCC/PPC/SPC560BCxx/vectors.h index b1e8d3359..6b1f66ec0 100644 --- a/os/ports/GCC/PPC/SPC560BCxx/vectors.h +++ b/os/ports/GCC/PPC/SPC560BCxx/vectors.h @@ -58,6 +58,8 @@ /* External declarations. */
/*===========================================================================*/
+#if !defined(_FROM_ASM_)
+
#if !defined(__DOXYGEN__)
extern uint32_t _vectors[VECTORS_NUMBER];
#endif
@@ -70,6 +72,8 @@ extern "C" { }
#endif
+#endif /* !defined(_FROM_ASM_) */
+
#endif /* _OSAL_H_ */
/** @} */
diff --git a/os/ports/GCC/PPC/SPC560Pxx/vectors.h b/os/ports/GCC/PPC/SPC560Pxx/vectors.h index 2b4595950..04f98fa27 100644 --- a/os/ports/GCC/PPC/SPC560Pxx/vectors.h +++ b/os/ports/GCC/PPC/SPC560Pxx/vectors.h @@ -58,6 +58,8 @@ /* External declarations. */
/*===========================================================================*/
+#if !defined(_FROM_ASM_)
+
#if !defined(__DOXYGEN__)
extern uint32_t _vectors[VECTORS_NUMBER];
#endif
@@ -70,6 +72,8 @@ extern "C" { }
#endif
+#endif /* !defined(_FROM_ASM_) */
+
#endif /* _OSAL_H_ */
/** @} */
diff --git a/os/ports/GCC/PPC/SPC563Mxx/vectors.h b/os/ports/GCC/PPC/SPC563Mxx/vectors.h index 0418b7fbd..eec7fa1e8 100644 --- a/os/ports/GCC/PPC/SPC563Mxx/vectors.h +++ b/os/ports/GCC/PPC/SPC563Mxx/vectors.h @@ -58,6 +58,8 @@ /* External declarations. */
/*===========================================================================*/
+#if !defined(_FROM_ASM_)
+
#if !defined(__DOXYGEN__)
extern uint32_t _vectors[VECTORS_NUMBER];
#endif
@@ -70,6 +72,8 @@ extern "C" { }
#endif
+#endif /* !defined(_FROM_ASM_) */
+
#endif /* _OSAL_H_ */
/** @} */
diff --git a/os/ports/GCC/PPC/SPC564Axx/vectors.h b/os/ports/GCC/PPC/SPC564Axx/vectors.h index f90b60168..a166457d3 100644 --- a/os/ports/GCC/PPC/SPC564Axx/vectors.h +++ b/os/ports/GCC/PPC/SPC564Axx/vectors.h @@ -58,6 +58,8 @@ /* External declarations. */
/*===========================================================================*/
+#if !defined(_FROM_ASM_)
+
#if !defined(__DOXYGEN__)
extern uint32_t _vectors[VECTORS_NUMBER];
#endif
@@ -70,6 +72,8 @@ extern "C" { }
#endif
+#endif /* !defined(_FROM_ASM_) */
+
#endif /* _OSAL_H_ */
/** @} */
diff --git a/os/ports/GCC/PPC/SPC56ELxx/vectors.h b/os/ports/GCC/PPC/SPC56ELxx/vectors.h index b59750e5f..14e7fc3e0 100644 --- a/os/ports/GCC/PPC/SPC56ELxx/vectors.h +++ b/os/ports/GCC/PPC/SPC56ELxx/vectors.h @@ -58,6 +58,8 @@ /* External declarations. */
/*===========================================================================*/
+#if !defined(_FROM_ASM_)
+
#if !defined(__DOXYGEN__)
extern uint32_t _vectors[VECTORS_NUMBER];
#endif
@@ -70,6 +72,8 @@ extern "C" { }
#endif
+#endif /* !defined(_FROM_ASM_) */
+
#endif /* _OSAL_H_ */
/** @} */
|