From c88c5882d1e10d22a27e4c48ee65bebaa5592e20 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Mon, 18 Oct 2010 07:18:20 +0000 Subject: Fixed bug 3089567. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2267 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/include/chstreams.h | 2 +- os/various/memstreams.h | 2 +- readme.txt | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h index 039f0dbd6..7d85aa186 100644 --- a/os/kernel/include/chstreams.h +++ b/os/kernel/include/chstreams.h @@ -41,7 +41,7 @@ /** * @brief BaseSequentialStream specific methods. */ -#define _base_sequential_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.*/ \ diff --git a/os/various/memstreams.h b/os/various/memstreams.h index 81b7127a7..e216e4e8f 100644 --- a/os/various/memstreams.h +++ b/os/various/memstreams.h @@ -32,7 +32,7 @@ * @brief @p RamStream specific data. */ #define _memory_stream_data \ - _base_sequental_stream_data \ + _base_sequential_stream_data \ /* Pointer to the stream buffer.*/ \ uint8_t *buffer; \ /* Size of the stream.*/ \ diff --git a/readme.txt b/readme.txt index cb59ba980..a4b750d84 100644 --- a/readme.txt +++ b/readme.txt @@ -63,6 +63,7 @@ ***************************************************************************** *** 2.1.2 *** +- FIX: Fixed typo in memstreams.h (bug 3089567)(backported to 2.0.6). - FIX: Fixed wrong macro check in LPC214x and AT91SAM7 serial drivers (bug 3088776)(backported to 2.0.6). - FIX: Fixed non functioning option SPI_USE_MUTUAL_EXCLUSION=FALSE (bug -- cgit v1.2.3