aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/kernel/include/chioch.h4
-rw-r--r--os/kernel/include/chstreams.h8
-rw-r--r--readme.txt2
3 files changed, 8 insertions, 6 deletions
diff --git a/os/kernel/include/chioch.h b/os/kernel/include/chioch.h
index 6c7380498..40103d0a5 100644
--- a/os/kernel/include/chioch.h
+++ b/os/kernel/include/chioch.h
@@ -42,7 +42,7 @@
* @brief @p BaseChannel specific methods.
*/
#define _base_channel_methods \
- _base_sequental_stream_methods \
+ _base_sequential_stream_methods \
/* Channel output check.*/ \
bool_t (*putwouldblock)(void *instance); \
/* Channel input check.*/ \
@@ -63,7 +63,7 @@
* implementation.
*/
#define _base_channel_data \
- _base_sequental_stream_data
+ _base_sequential_stream_data
/**
* @brief @p BaseChannel virtual methods table.
diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h
index 4681ac331..436697a9a 100644
--- a/os/kernel/include/chstreams.h
+++ b/os/kernel/include/chstreams.h
@@ -41,7 +41,7 @@
/**
* @brief BaseSequentialStream specific methods.
*/
-#define _base_sequental_stream_methods \
+#define _base_sequential_stream_methods \
/* Stream write buffer method.*/ \
size_t (*write)(void *instance, const uint8_t *bp, size_t n); \
/* Stream read buffer method.*/ \
@@ -52,13 +52,13 @@
* @note It is empty because @p BaseSequentialStream is only an interface
* without implementation.
*/
-#define _base_sequental_stream_data
+#define _base_sequential_stream_data
/**
* @brief @p BaseSequentialStream virtual methods table.
*/
struct BaseSequentialStreamVMT {
- _base_sequental_stream_methods
+ _base_sequential_stream_methods
};
/**
@@ -69,7 +69,7 @@ struct BaseSequentialStreamVMT {
typedef struct {
/** @brief Virtual Methods Table.*/
const struct BaseSequentialStreamVMT *vmt;
- _base_sequental_stream_data
+ _base_sequential_stream_data
} BaseSequentialStream;
/**
diff --git a/readme.txt b/readme.txt
index f05477a38..e0348b722 100644
--- a/readme.txt
+++ b/readme.txt
@@ -61,6 +61,8 @@
*****************************************************************************
*** 2.1.1 ***
+- FIX: Fixed misspelled word in some chioch.h and chstreams.h macros (bug
+ 3031534)(backported to 2.0.3).
- FIX: Fixed wrong macro check in the STM32 SPI driver (bug 3028562)(backported
to 2.0.3).
- FIX: Fixed invalid context restore in MSP430 port (bug 3027975)(backported