aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-09-06 12:37:30 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-09-06 12:37:30 +0000
commit86ca0fdb8ba28ca4e86afff33fb2ad6e28dd4c2e (patch)
treedb93a14d36457f661f0f90df9ca6c36b8ac82e21
parent9b2fe7aa9f6160bcbb644eca911a2c1eb88d9e77 (diff)
downloadChibiOS-86ca0fdb8ba28ca4e86afff33fb2ad6e28dd4c2e.tar.gz
ChibiOS-86ca0fdb8ba28ca4e86afff33fb2ad6e28dd4c2e.tar.bz2
ChibiOS-86ca0fdb8ba28ca4e86afff33fb2ad6e28dd4c2e.zip
Fixed bug #976.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12240 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r--os/hal/include/hal_channels.h2
-rw-r--r--readme.txt2
2 files changed, 3 insertions, 1 deletions
diff --git a/os/hal/include/hal_channels.h b/os/hal/include/hal_channels.h
index e4ea25b29..1ef25b033 100644
--- a/os/hal/include/hal_channels.h
+++ b/os/hal/include/hal_channels.h
@@ -220,7 +220,7 @@ typedef struct {
*
* @api
*/
-#define chnControl(ip, operation, arg) ((ip)->vmt->ctl(ip, operation, arg)
+#define chnControl(ip, operation, arg) ((ip)->vmt->ctl(ip, operation, arg))
/** @} */
/**
diff --git a/readme.txt b/readme.txt
index d11abd30a..e2cdcce56 100644
--- a/readme.txt
+++ b/readme.txt
@@ -141,6 +141,8 @@
- EX: Updated LIS302DL to 1.1.0 (backported to 18.2.1).
- EX: Updated LPS25H to 1.1.0 (backported to 18.2.1).
- EX: Updated LSM303DLHC to 1.1.0 (backported to 18.2.1).
+- HAL: Fixed HAL channels chnControl() macro broken (bug #976)
+ (backported to 18.2.2).
- OTH: Fixed wrong timeout handling in CMSIS OS layer (bug #975)
(backported to 18.2.2 and 17.6.5).
- HAL: Fixed invalid checks in STM32F37x HAL related to SDADC (bug #974)