aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/lib/streams
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2016-05-05 09:44:28 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2016-05-05 09:44:28 +0000
commit4c093804c0f3daf91ec26532618d55da7c3e3e74 (patch)
tree4f8214f7d3ad27c6ba9e8c0d87e8712cd6e6a66e /os/hal/lib/streams
parentcd7b481ded8d341cd604417de35c12a59f4775b1 (diff)
downloadChibiOS-4c093804c0f3daf91ec26532618d55da7c3e3e74.tar.gz
ChibiOS-4c093804c0f3daf91ec26532618d55da7c3e3e74.tar.bz2
ChibiOS-4c093804c0f3daf91ec26532618d55da7c3e3e74.zip
Added flash interface.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9419 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/lib/streams')
-rw-r--r--os/hal/lib/streams/chprintf.h6
-rw-r--r--os/hal/lib/streams/memstreams.h6
-rw-r--r--os/hal/lib/streams/nullstreams.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/os/hal/lib/streams/chprintf.h b/os/hal/lib/streams/chprintf.h
index 7aa3d5d44..a595249a6 100644
--- a/os/hal/lib/streams/chprintf.h
+++ b/os/hal/lib/streams/chprintf.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _CHPRINTF_H_
-#define _CHPRINTF_H_
+#ifndef CHPRINTF_H
+#define CHPRINTF_H
#include <stdarg.h>
@@ -44,6 +44,6 @@ extern "C" {
}
#endif
-#endif /* _CHPRINTF_H_ */
+#endif /* CHPRINTF_H */
/** @} */
diff --git a/os/hal/lib/streams/memstreams.h b/os/hal/lib/streams/memstreams.h
index ef06a5aa7..dad5ba677 100644
--- a/os/hal/lib/streams/memstreams.h
+++ b/os/hal/lib/streams/memstreams.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _MEMSTREAMS_H_
-#define _MEMSTREAMS_H_
+#ifndef MEMSTREAMS_H
+#define MEMSTREAMS_H
/*===========================================================================*/
/* Driver constants. */
@@ -90,6 +90,6 @@ extern "C" {
}
#endif
-#endif /* _MEMSTREAMS_H_ */
+#endif /* MEMSTREAMS_H */
/** @} */
diff --git a/os/hal/lib/streams/nullstreams.h b/os/hal/lib/streams/nullstreams.h
index 37cb6a4e2..f174ee3a6 100644
--- a/os/hal/lib/streams/nullstreams.h
+++ b/os/hal/lib/streams/nullstreams.h
@@ -22,8 +22,8 @@
* @{
*/
-#ifndef _NULLSTREAMS_H_
-#define _NULLSTREAMS_H_
+#ifndef NULLSTREAMS_H
+#define NULLSTREAMS_H
/*===========================================================================*/
/* Driver constants. */
@@ -81,6 +81,6 @@ extern "C" {
}
#endif
-#endif /* _NULLSTREAMS_H_ */
+#endif /* NULLSTREAMS_H */
/** @} */