aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-09-04 12:24:54 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-09-04 12:24:54 +0000
commit71ee071933334f72b5c69ee682cffc9565500215 (patch)
tree64d66b84671c5b23b77eac33e987a3b21bfa592a /os/hal
parenta923a46007f6ae63deac2183319ba064e7b2921c (diff)
downloadChibiOS-71ee071933334f72b5c69ee682cffc9565500215.tar.gz
ChibiOS-71ee071933334f72b5c69ee682cffc9565500215.tar.bz2
ChibiOS-71ee071933334f72b5c69ee682cffc9565500215.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6260 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/include/hal_channels.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/include/hal_channels.h b/os/hal/include/hal_channels.h
index bd9a26c77..06198b5e1 100644
--- a/os/hal/include/hal_channels.h
+++ b/os/hal/include/hal_channels.h
@@ -143,7 +143,7 @@ typedef struct {
*
* @api
*/
-#define chnWrite(ip, bp, n) chSequentialStreamWrite(ip, bp, n)
+#define chnWrite(ip, bp, n) streamSequentialStreamWrite(ip, bp, n)
/**
* @brief Channel blocking write with timeout.
@@ -177,7 +177,7 @@ typedef struct {
*
* @api
*/
-#define chnRead(ip, bp, n) chSequentialStreamRead(ip, bp, n)
+#define chnRead(ip, bp, n) streamSequentialStreamRead(ip, bp, n)
/**
* @brief Channel blocking read with timeout.