Fixed bug 3089567.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2267 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2010-10-18 07:18:20 +00:00
parent b7e7258008
commit c88c5882d1
3 changed files with 3 additions and 2 deletions

View File

@ -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.*/ \

View File

@ -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.*/ \

View File

@ -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