From 560c74c94926b93e64db611b48608cd5f77477bf Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 16 Dec 2012 10:14:24 +0000 Subject: [PATCH] Fixed bug 3595910. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4923 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/include/chqueues.h | 4 ++-- readme.txt | 14 ++++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/os/kernel/include/chqueues.h b/os/kernel/include/chqueues.h index 8afc3c0c4..e131a821f 100644 --- a/os/kernel/include/chqueues.h +++ b/os/kernel/include/chqueues.h @@ -247,13 +247,13 @@ typedef GenericQueue OutputQueue; /** * @brief Returns the empty space into an output queue. * - * @param[in] iqp pointer to an @p OutputQueue structure + * @param[in] oqp pointer to an @p OutputQueue structure * @return The number of empty bytes in the queue. * @retval 0 if the queue is full. * * @iclass */ -#define chOQGetEmptyI(iqp) chQSpaceI(oqp) +#define chOQGetEmptyI(oqp) chQSpaceI(oqp) /** * @brief Evaluates to @p TRUE if the specified output queue is empty. diff --git a/readme.txt b/readme.txt index 97e72e19a..e5bf3a750 100644 --- a/readme.txt +++ b/readme.txt @@ -79,12 +79,14 @@ ***************************************************************************** *** 2.4.3 *** -- FIX: Possible false detect of loaded prescaler in RTCv1 driver (bug - 3595489) -- FIX: Unneeded RTC initialization when HAL_USE_RTC disabled (bug 3594620). -- FIX: Compilation issue with HAL_USE_RTC disabled (bug 3594083). -- FIX: Wasting of BKP registers in RTCv1 driver (bug 3594005). -- FIX: Potential problem with RTC_CRL_RSF bit (bug 3593972). +- FIX: Fixed typo in chOQGetEmptyI() macro (bug 3595910). +- FIX: Fixed possible false detect of loaded prescaler in RTCv1 driver (bug + 3595489). +- FIX: Fixed unneeded RTC initialization when HAL_USE_RTC disabled + (bug 3594620). +- FIX: Fixed compilation issue with HAL_USE_RTC disabled (bug 3594083). +- FIX: Fixed wasting of BKP registers in RTCv1 driver (bug 3594005). +- FIX: Fixed potential problem with RTC_CRL_RSF bit (bug 3593972). - FIX: Fixed DMA reconfiguration problem in STM32 SPI driver (bug 3592809). - FIX: Fixed STM32 UART driver redundant initialization (bug 3592764). - FIX: Fixed wrong stack initializations in GCC STM32L1xx port files (bug